Skip to content
This repository was archived by the owner on Dec 22, 2024. It is now read-only.

Commit ef60267

Browse files
chore(deps): update actions/cache action to v4
1 parent c4d9588 commit ef60267

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/clear-cache.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
run: echo "::set-output name=dir::$(yarn cache dir)"
2121

2222
- name: Activate dependency cache
23-
uses: actions/cache@v3
23+
uses: actions/cache@v4
2424
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
2525
with:
2626
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
@@ -33,7 +33,7 @@ jobs:
3333

3434
- name: Caching Gatsby
3535
id: gatsby-cache-build
36-
uses: actions/cache@v3
36+
uses: actions/cache@v4
3737
with:
3838
path: |
3939
public

.github/workflows/codeql-analysis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
id: yarn-cache-dir-path
7070
run: echo "::set-output name=dir::$(yarn cache dir)"
7171
- name: Activate dependency cache
72-
uses: actions/cache@v3
72+
uses: actions/cache@v4
7373
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
7474
with:
7575
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}

.github/workflows/continuous-deployment.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
run: echo "cache_dir=$(yarn cache dir)" >> "$GITHUB_ENV"
3939

4040
- name: Activate dependency cache
41-
uses: actions/cache@v3
41+
uses: actions/cache@v4
4242
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
4343
with:
4444
path: ${{ env.cache_dir }}
@@ -51,7 +51,7 @@ jobs:
5151

5252
- name: Caching Gatsby
5353
id: gatsby-cache-build
54-
uses: actions/cache@v3
54+
uses: actions/cache@v4
5555
with:
5656
path: |
5757
public

0 commit comments

Comments
 (0)