mirror of
https://github.com/renovatebot/renovate.git
synced 2025-05-14 16:32:26 +00:00
chore(deps): update actions/cache action to v4.2.3 (main) (#34916)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
This commit is contained in:
parent
001dcf0d57
commit
c753c52356
3 changed files with 10 additions and 10 deletions
.github
|
@ -34,7 +34,7 @@ runs:
|
|||
|
||||
- name: Check cache miss for MacOS
|
||||
id: macos-cache
|
||||
uses: actions/cache/restore@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
|
||||
uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
|
||||
with:
|
||||
path: node_modules
|
||||
key: ${{ env.MACOS_KEY }}
|
||||
|
@ -43,7 +43,7 @@ runs:
|
|||
|
||||
- name: Check cache miss for Windows
|
||||
id: windows-cache
|
||||
uses: actions/cache/restore@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
|
||||
uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
|
||||
with:
|
||||
path: node_modules
|
||||
key: ${{ env.WINDOWS_KEY }}
|
||||
|
|
6
.github/actions/setup-node/action.yml
vendored
6
.github/actions/setup-node/action.yml
vendored
|
@ -34,7 +34,7 @@ runs:
|
|||
|
||||
- name: Restore `node_modules`
|
||||
id: node-modules-restore
|
||||
uses: actions/cache/restore@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
|
||||
uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
|
||||
with:
|
||||
path: node_modules
|
||||
key: ${{ env.CACHE_KEY }}
|
||||
|
@ -64,7 +64,7 @@ runs:
|
|||
|
||||
- name: Cache and restore `pnpm store`
|
||||
if: env.CACHE_HIT != 'true'
|
||||
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
|
||||
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
|
||||
with:
|
||||
path: ${{ env.PNPM_STORE }}
|
||||
key: |
|
||||
|
@ -87,7 +87,7 @@ runs:
|
|||
|
||||
- name: Write `node_modules` cache
|
||||
if: inputs.save-cache == 'true' && env.CACHE_HIT != 'true'
|
||||
uses: actions/cache/save@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
|
||||
uses: actions/cache/save@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
|
||||
with:
|
||||
path: node_modules
|
||||
key: ${{ env.CACHE_KEY }}
|
||||
|
|
10
.github/workflows/build.yml
vendored
10
.github/workflows/build.yml
vendored
|
@ -209,7 +209,7 @@ jobs:
|
|||
os: ${{ runner.os }}
|
||||
|
||||
- name: Restore eslint cache
|
||||
uses: actions/cache/restore@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
|
||||
uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
|
||||
with:
|
||||
path: .cache/eslint
|
||||
key: eslint-cache
|
||||
|
@ -220,7 +220,7 @@ jobs:
|
|||
|
||||
- name: Save eslint cache
|
||||
if: github.event_name == 'push'
|
||||
uses: actions/cache/save@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
|
||||
uses: actions/cache/save@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
|
||||
with:
|
||||
path: .cache/eslint
|
||||
key: eslint-cache-${{ github.run_id }}-${{ github.run_attempt }}
|
||||
|
@ -244,7 +244,7 @@ jobs:
|
|||
os: ${{ runner.os }}
|
||||
|
||||
- name: Restore prettier cache
|
||||
uses: actions/cache/restore@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
|
||||
uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
|
||||
with:
|
||||
path: .cache/prettier
|
||||
key: prettier-cache
|
||||
|
@ -261,7 +261,7 @@ jobs:
|
|||
|
||||
- name: Save prettier cache
|
||||
if: github.event_name == 'push'
|
||||
uses: actions/cache/save@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
|
||||
uses: actions/cache/save@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
|
||||
with:
|
||||
path: .cache/prettier
|
||||
key: prettier-cache-${{ github.run_id }}-${{ github.run_attempt }}
|
||||
|
@ -357,7 +357,7 @@ jobs:
|
|||
os: ${{ runner.os }}
|
||||
|
||||
- name: Cache vitest
|
||||
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
|
||||
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
|
||||
with:
|
||||
path: .cache/vitest
|
||||
key: |
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue