diff options
| author | David Sherret <dsherret@users.noreply.github.com> | 2022-07-02 00:22:07 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-07-02 00:22:07 -0400 |
| commit | d7feddfca0eed8faf43d52e625f6fb42327310ef (patch) | |
| tree | 64dc31e33c0acea36aff5021142e539830946c11 /.github/workflows/cargo_publish.yml | |
| parent | 4e7abf4986d8d4824ec8be0b8a036c6ac9fe2cee (diff) | |
ci: use a known good version of deno instead of latest in publish scripts (#15037)
Diffstat (limited to '.github/workflows/cargo_publish.yml')
| -rw-r--r-- | .github/workflows/cargo_publish.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/cargo_publish.yml b/.github/workflows/cargo_publish.yml index a0163c596..6c8bd40b5 100644 --- a/.github/workflows/cargo_publish.yml +++ b/.github/workflows/cargo_publish.yml @@ -30,7 +30,9 @@ jobs: - name: Install deno uses: denoland/setup-deno@v1 with: - deno-version: v1.x + # use a recent version instead of the latest version in case + # the latest version ever has issues that breaks publishing + deno-version: v1.23.2 - name: Publish env: |
