mirror of
https://github.com/denoland/deno.git
synced 2024-11-26 16:09:27 -05:00
ci: use a known good version of deno instead of latest in publish scripts (#15037)
This commit is contained in:
parent
01515bb6b8
commit
bff9c8c2c4
2 changed files with 6 additions and 2 deletions
4
.github/workflows/cargo_publish.yml
vendored
4
.github/workflows/cargo_publish.yml
vendored
|
@ -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:
|
||||
|
|
4
.github/workflows/version_bump.yml
vendored
4
.github/workflows/version_bump.yml
vendored
|
@ -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: |
|
||||
|
|
Loading…
Reference in a new issue