summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryoungjuning <youngjuning@aliyun.com>2021-02-09 23:08:10 +0800
committerGitHub <noreply@github.com>2021-02-09 16:08:10 +0100
commit47b3e4bada01f29a6cf2a143b94d772242bbab67 (patch)
treec66d1558e16d1c2b2ce05a9c375f86393246b932
parenta195c75033eeed983c55f3ca9228b134f84c7651 (diff)
ci: bump Deno version (#9449)
Co-authored-by: Bartek IwaƄczuk <biwanczuk@gmail.com>
-rw-r--r--.github/workflows/ci.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 9ea6938b2..fe41c8163 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -30,7 +30,7 @@ jobs:
# stay mostly up-to-date in situations where a single job fails due to
# e.g. a flaky test.
# Don't fast-fail on tag build because publishing binaries shouldn't be
- # prevented if 'cargo publish' fails (which can be a false negative).
+ # prevented if if any of the stages fails (which can be a false negative).
fail-fast: ${{ github.event_name == 'pull_request' || (github.ref !=
'refs/heads/master' && !startsWith(github.ref, 'refs/tags/')) }}
@@ -77,13 +77,13 @@ jobs:
if: |
!startsWith(matrix.os, 'windows')
run: |-
- curl -fsSL https://deno.land/x/install/install.sh | sh -s v1.5.1
+ curl -fsSL https://deno.land/x/install/install.sh | sh -s v1.7.2
echo "$HOME/.deno/bin" >> $GITHUB_PATH
- name: Install Deno (Windows)
if: startsWith(matrix.os, 'windows')
run: |-
- curl -fsSL https://deno.land/x/install/install.sh | sh -s v1.5.1
+ curl -fsSL https://deno.land/x/install/install.sh | sh -s v1.7.2
echo "$HOME/.deno/bin" >> $env:GITHUB_PATH
- name: Install Python