From 47b3e4bada01f29a6cf2a143b94d772242bbab67 Mon Sep 17 00:00:00 2001 From: youngjuning Date: Tue, 9 Feb 2021 23:08:10 +0800 Subject: [PATCH] ci: bump Deno version (#9449) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Bartek IwaƄczuk --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9ea6938b2b..fe41c81632 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