diff options
author | Bert Belder <bertbelder@gmail.com> | 2020-06-05 04:21:07 +0200 |
---|---|---|
committer | Bert Belder <bertbelder@gmail.com> | 2020-06-05 04:35:50 +0200 |
commit | 7069d60423979858ece856d52ef9567a50f8ef76 (patch) | |
tree | c97a3e3cd86a5807794a11cab306fb1adaae5a42 | |
parent | e05ed537130eff116b48af02d1eb6ce65953e7d8 (diff) |
ci: use upstream actions/cache@v2 (#6113)
Upstream finally tagged v2.0.0 so there's no reason to use our own fork
any longer.
-rw-r--r-- | .github/workflows/ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f5c47006d..8d6cab782 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -104,7 +104,7 @@ jobs: run: echo "::set-env name=CARGO_HOME::$(pwd)/.cargo_home" - name: Cache - uses: denoland/github-actions-cache@stable-prerelease + uses: actions/cache@v2 with: # Note: crates from the denoland/deno git repo always get rebuilt, # and their outputs ('deno', 'libdeno.rlib' etc.) are quite big, |