mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-11 22:46:27 +00:00
chore(deps): update actions/cache action to v4.0.1 (#27646)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
This commit is contained in:
parent
cc776e7b85
commit
2fa2827ad3
3 changed files with 9 additions and 9 deletions
|
@ -34,7 +34,7 @@ runs:
|
|||
|
||||
- name: Check cache miss for MacOS
|
||||
id: macos-cache
|
||||
uses: actions/cache/restore@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
|
||||
uses: actions/cache/restore@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4.0.1
|
||||
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@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
|
||||
uses: actions/cache/restore@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4.0.1
|
||||
with:
|
||||
path: node_modules
|
||||
key: ${{ env.WINDOWS_KEY }}
|
||||
|
|
4
.github/actions/setup-node/action.yml
vendored
4
.github/actions/setup-node/action.yml
vendored
|
@ -34,7 +34,7 @@ runs:
|
|||
|
||||
- name: Restore `node_modules`
|
||||
id: node-modules-restore
|
||||
uses: actions/cache/restore@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
|
||||
uses: actions/cache/restore@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4.0.1
|
||||
with:
|
||||
path: node_modules
|
||||
key: ${{ env.CACHE_KEY }}
|
||||
|
@ -67,7 +67,7 @@ runs:
|
|||
|
||||
- name: Write `node_modules` cache
|
||||
if: inputs.save-cache == 'true' && env.CACHE_HIT != 'true'
|
||||
uses: actions/cache/save@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
|
||||
uses: actions/cache/save@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4.0.1
|
||||
with:
|
||||
path: node_modules
|
||||
key: ${{ env.CACHE_KEY }}
|
||||
|
|
10
.github/workflows/build.yml
vendored
10
.github/workflows/build.yml
vendored
|
@ -181,7 +181,7 @@ jobs:
|
|||
os: ${{ runner.os }}
|
||||
|
||||
- name: Restore eslint cache
|
||||
uses: actions/cache/restore@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
|
||||
uses: actions/cache/restore@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4.0.1
|
||||
with:
|
||||
path: .cache/eslint
|
||||
key: eslint-main-cache
|
||||
|
@ -200,7 +200,7 @@ jobs:
|
|||
|
||||
- name: Save eslint cache
|
||||
if: github.event_name == 'push'
|
||||
uses: actions/cache/save@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
|
||||
uses: actions/cache/save@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4.0.1
|
||||
with:
|
||||
path: .cache/eslint
|
||||
key: eslint-main-cache
|
||||
|
@ -224,7 +224,7 @@ jobs:
|
|||
os: ${{ runner.os }}
|
||||
|
||||
- name: Restore prettier cache
|
||||
uses: actions/cache/restore@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
|
||||
uses: actions/cache/restore@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4.0.1
|
||||
with:
|
||||
path: .cache/prettier
|
||||
key: prettier-main-cache
|
||||
|
@ -243,7 +243,7 @@ jobs:
|
|||
|
||||
- name: Save prettier cache
|
||||
if: github.event_name == 'push'
|
||||
uses: actions/cache/save@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
|
||||
uses: actions/cache/save@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4.0.1
|
||||
with:
|
||||
path: .cache/prettier
|
||||
key: prettier-main-cache
|
||||
|
@ -328,7 +328,7 @@ jobs:
|
|||
os: ${{ runner.os }}
|
||||
|
||||
- name: Cache jest
|
||||
uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
|
||||
uses: actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4.0.1
|
||||
with:
|
||||
path: .cache/jest
|
||||
key: |
|
||||
|
|
Loading…
Reference in a new issue