File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -25,15 +25,15 @@ jobs:
25
25
name : Node.js v${{ matrix.node }}
26
26
runs-on : ubuntu-latest
27
27
steps :
28
- - uses : actions/checkout@v3
29
- - uses : actions/setup-node@v3
28
+ - uses : actions/checkout@v4
29
+ - uses : actions/setup-node@v4
30
30
with :
31
31
node-version : ${{ matrix.node }}
32
32
- name : Get npm cache directory
33
33
id : npm-cache-dir
34
34
shell : bash
35
35
run : echo "dir=$(npm config get cache)" >> ${GITHUB_OUTPUT}
36
- - uses : actions/cache@v3
36
+ - uses : actions/cache@v4
37
37
id : npm-cache # use this to check for `cache-hit` ==> if: steps.npm-cache.outputs.cache-hit != 'true'
38
38
with :
39
39
path : ${{ steps.npm-cache-dir.outputs.dir }}
@@ -54,16 +54,16 @@ jobs:
54
54
needs : test
55
55
runs-on : ubuntu-latest
56
56
steps :
57
- - uses : actions/checkout@v3
57
+ - uses : actions/checkout@v4
58
58
- name : Install Node v18
59
- uses : actions/setup-node@v3
59
+ uses : actions/setup-node@v4
60
60
with :
61
61
node-version : 18
62
62
- name : Get npm cache directory
63
63
id : npm-cache-dir
64
64
shell : bash
65
65
run : echo "dir=$(npm config get cache)" >> ${GITHUB_OUTPUT}
66
- - uses : actions/cache@v3
66
+ - uses : actions/cache@v4
67
67
id : npm-cache # use this to check for `cache-hit` ==> if: steps.npm-cache.outputs.cache-hit != 'true'
68
68
with :
69
69
path : ${{ steps.npm-cache-dir.outputs.dir }}
You can’t perform that action at this time.
0 commit comments