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 | |
parent | 4e7abf4986d8d4824ec8be0b8a036c6ac9fe2cee (diff) |
ci: use a known good version of deno instead of latest in publish scripts (#15037)
-rw-r--r-- | .github/workflows/cargo_publish.yml | 4 | ||||
-rw-r--r-- | .github/workflows/version_bump.yml | 4 |
2 files changed, 6 insertions, 2 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: diff --git a/.github/workflows/version_bump.yml b/.github/workflows/version_bump.yml index bb31bb049..a72ee1cf6 100644 --- a/.github/workflows/version_bump.yml +++ b/.github/workflows/version_bump.yml @@ -41,7 +41,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: Run version bump run: | |