mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
chore(CI): update to actions/cache@v3
(#17201)
This commit is contained in:
parent
1b001d1b18
commit
e010eb69c2
1 changed files with 2 additions and 12 deletions
14
.github/workflows/ci.yml
vendored
14
.github/workflows/ci.yml
vendored
|
@ -237,9 +237,7 @@ jobs:
|
|||
|
||||
# In main branch, always creates fresh cache
|
||||
- name: Cache build output (main)
|
||||
# TODO(kt3k): Change the version to the released version
|
||||
# when https://github.com/actions/cache/pull/489 (or 571) is merged.
|
||||
uses: actions/cache@03e00da99d75a2204924908e1cca7902cafce66b
|
||||
uses: actions/cache/save@v3
|
||||
if: (matrix.profile == 'release' || matrix.profile == 'fastci') &&
|
||||
github.ref == 'refs/heads/main'
|
||||
with:
|
||||
|
@ -253,9 +251,7 @@ jobs:
|
|||
|
||||
# Restore cache from the latest 'main' branch build.
|
||||
- name: Cache build output (PR)
|
||||
# TODO(kt3k): Change the version to the released version
|
||||
# when https://github.com/actions/cache/pull/489 (or 571) is merged.
|
||||
uses: actions/cache@03e00da99d75a2204924908e1cca7902cafce66b
|
||||
uses: actions/cache/restore@v3
|
||||
if: github.ref != 'refs/heads/main' && !startsWith(github.ref, 'refs/tags/')
|
||||
with:
|
||||
path: |
|
||||
|
@ -267,12 +263,6 @@ jobs:
|
|||
restore-keys: |
|
||||
18-cargo-target-${{ matrix.os }}-${{ matrix.profile }}-
|
||||
|
||||
# Don't save cache after building PRs or branches other than 'main'.
|
||||
- name: Skip save cache (PR)
|
||||
run: echo "CACHE_SKIP_SAVE=true" >> $GITHUB_ENV
|
||||
shell: bash
|
||||
if: github.ref != 'refs/heads/main' && !startsWith(github.ref, 'refs/tags/')
|
||||
|
||||
- name: Apply and update mtime cache
|
||||
if: matrix.profile == 'release'
|
||||
uses: ./.github/mtime_cache
|
||||
|
|
Loading…
Reference in a new issue