Skip to content

Commit 04b63d8

Browse files
authored
Merge pull request #301 from openscript-ch/renovate/actions-cache-4.x
chore(deps): update actions/cache action to v4
2 parents bf190e2 + ced7eab commit 04b63d8

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/clear-cache.yml

Lines changed: 2 additions & 2 deletions
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
run: echo "cache_dir=$(yarn cache dir)" >> "$GITHUB_ENV"
4141

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

5454
- name: Caching Gatsby
5555
id: gatsby-cache-build
56-
uses: actions/cache@v3
56+
uses: actions/cache@v4
5757
with:
5858
path: |
5959
public

0 commit comments

Comments
 (0)