Skip to content

Commit 3ebaa8a

Browse files
Bump cache action to v4 (#1343)
1 parent 3618991 commit 3ebaa8a

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/node.js.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
# Keep in sync with netlify.toml
2121
node-version: 20.x
2222
- name: Cache node_modules
23-
uses: actions/cache@v3
23+
uses: actions/cache@v4
2424
id: cache
2525
with:
2626
# Caching node_modules isn't recommended because it can break across
@@ -42,13 +42,13 @@ jobs:
4242
with:
4343
node-version: 20.x
4444
- name: Load node_modules from cache
45-
uses: actions/cache@v3
45+
uses: actions/cache@v4
4646
with:
4747
# Use node_modules from previous jobs
4848
path: 'node_modules'
4949
key: ${{ runner.os }}-node-20-${{ hashFiles('package*.json') }}
5050
- name: Cache BookReader/
51-
uses: actions/cache@v3
51+
uses: actions/cache@v4
5252
id: build-cache
5353
with:
5454
# Cache the build files so we don't have to build twice for e2e tests
@@ -66,7 +66,7 @@ jobs:
6666
with:
6767
node-version: 20.x
6868
- name: Load node_modules from cache
69-
uses: actions/cache@v3
69+
uses: actions/cache@v4
7070
with:
7171
# Use node_modules from previous jobs
7272
path: 'node_modules'
@@ -86,13 +86,13 @@ jobs:
8686
with:
8787
node-version: 20.x
8888
- name: Load node_modules from cache
89-
uses: actions/cache@v3
89+
uses: actions/cache@v4
9090
with:
9191
# Use node_modules from previous jobs
9292
path: 'node_modules'
9393
key: ${{ runner.os }}-node-20-${{ hashFiles('package*.json') }}
9494
- name: Load BookReader/ from cache
95-
uses: actions/cache@v3
95+
uses: actions/cache@v4
9696
with:
9797
# Cache the build files so we don't have to build twice for e2e tests
9898
path: 'BookReader'

0 commit comments

Comments
 (0)