diff options
author | Lucas Michot <513603+lucasmichot@users.noreply.github.com> | 2022-06-08 16:46:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-08 16:46:57 +0200 |
commit | 4911acb148a4b7b22a205772e2e9c410ee5be9c7 (patch) | |
tree | f018e33fb807032531bf58c9c8686e3b14929a37 | |
parent | 4305bb4bd8ec3747031ee92baa8e55d50d22b47c (diff) |
chore(scripts): always run workflows against Deno's most recent version. (#14819)
-rw-r--r-- | .github/workflows/cargo_publish.yml | 2 | ||||
-rw-r--r-- | .github/workflows/version_bump.yml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/cargo_publish.yml b/.github/workflows/cargo_publish.yml index 5ab74bbdd..a0163c596 100644 --- a/.github/workflows/cargo_publish.yml +++ b/.github/workflows/cargo_publish.yml @@ -30,7 +30,7 @@ jobs: - name: Install deno uses: denoland/setup-deno@v1 with: - deno-version: v1.22.2 + deno-version: v1.x - name: Publish env: diff --git a/.github/workflows/version_bump.yml b/.github/workflows/version_bump.yml index 0425f18f8..bb31bb049 100644 --- a/.github/workflows/version_bump.yml +++ b/.github/workflows/version_bump.yml @@ -41,7 +41,7 @@ jobs: - name: Install deno uses: denoland/setup-deno@v1 with: - deno-version: v1.22.2 + deno-version: v1.x - name: Run version bump run: | |