Skip to content

Commit 41afec3

Browse files
authoredOct 22, 2024··
chore(deps): update actions/cache action to v4.1.2 (#32086)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent c7d66d1 commit 41afec3

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed
 

‎.github/actions/calculate-prefetch-matrix/action.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ runs:
3434
3535
- name: Check cache miss for MacOS
3636
id: macos-cache
37-
uses: actions/cache/restore@3624ceb22c1c5a301c8db4169662070a689d9ea8 # v4.1.1
37+
uses: actions/cache/restore@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2
3838
with:
3939
path: node_modules
4040
key: ${{ env.MACOS_KEY }}
@@ -43,7 +43,7 @@ runs:
4343

4444
- name: Check cache miss for Windows
4545
id: windows-cache
46-
uses: actions/cache/restore@3624ceb22c1c5a301c8db4169662070a689d9ea8 # v4.1.1
46+
uses: actions/cache/restore@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2
4747
with:
4848
path: node_modules
4949
key: ${{ env.WINDOWS_KEY }}

‎.github/actions/setup-node/action.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ runs:
3434
3535
- name: Restore `node_modules`
3636
id: node-modules-restore
37-
uses: actions/cache/restore@3624ceb22c1c5a301c8db4169662070a689d9ea8 # v4.1.1
37+
uses: actions/cache/restore@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2
3838
with:
3939
path: node_modules
4040
key: ${{ env.CACHE_KEY }}
@@ -64,7 +64,7 @@ runs:
6464
6565
- name: Cache and restore `pnpm store`
6666
if: env.CACHE_HIT != 'true'
67-
uses: actions/cache@3624ceb22c1c5a301c8db4169662070a689d9ea8 # v4.1.1
67+
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2
6868
with:
6969
path: ${{ env.PNPM_STORE }}
7070
key: |
@@ -87,7 +87,7 @@ runs:
8787

8888
- name: Write `node_modules` cache
8989
if: inputs.save-cache == 'true' && env.CACHE_HIT != 'true'
90-
uses: actions/cache/save@3624ceb22c1c5a301c8db4169662070a689d9ea8 # v4.1.1
90+
uses: actions/cache/save@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2
9191
with:
9292
path: node_modules
9393
key: ${{ env.CACHE_KEY }}

‎.github/workflows/build.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ jobs:
208208
os: ${{ runner.os }}
209209

210210
- name: Restore eslint cache
211-
uses: actions/cache/restore@3624ceb22c1c5a301c8db4169662070a689d9ea8 # v4.1.1
211+
uses: actions/cache/restore@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2
212212
with:
213213
path: .cache/eslint
214214
key: eslint-main-cache
@@ -227,7 +227,7 @@ jobs:
227227
228228
- name: Save eslint cache
229229
if: github.event_name == 'push'
230-
uses: actions/cache/save@3624ceb22c1c5a301c8db4169662070a689d9ea8 # v4.1.1
230+
uses: actions/cache/save@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2
231231
with:
232232
path: .cache/eslint
233233
key: eslint-main-cache
@@ -254,7 +254,7 @@ jobs:
254254
os: ${{ runner.os }}
255255

256256
- name: Restore prettier cache
257-
uses: actions/cache/restore@3624ceb22c1c5a301c8db4169662070a689d9ea8 # v4.1.1
257+
uses: actions/cache/restore@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2
258258
with:
259259
path: .cache/prettier
260260
key: prettier-main-cache
@@ -279,7 +279,7 @@ jobs:
279279
280280
- name: Save prettier cache
281281
if: github.event_name == 'push'
282-
uses: actions/cache/save@3624ceb22c1c5a301c8db4169662070a689d9ea8 # v4.1.1
282+
uses: actions/cache/save@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2
283283
with:
284284
path: .cache/prettier
285285
key: prettier-main-cache
@@ -372,7 +372,7 @@ jobs:
372372
os: ${{ runner.os }}
373373

374374
- name: Cache jest
375-
uses: actions/cache@3624ceb22c1c5a301c8db4169662070a689d9ea8 # v4.1.1
375+
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2
376376
with:
377377
path: .cache/jest
378378
key: |

0 commit comments

Comments
 (0)
Please sign in to comment.