File tree Expand file tree Collapse file tree 1 file changed +12
-10
lines changed Expand file tree Collapse file tree 1 file changed +12
-10
lines changed Original file line number Diff line number Diff line change @@ -13,16 +13,17 @@ jobs:
13
13
strategy :
14
14
matrix :
15
15
node-version :
16
- - 14.x
17
- - 16.x
16
+ - 18.x
17
+ - 20.x
18
+ - 22.x
18
19
steps :
19
- - uses : actions/checkout@v1
20
- - uses : actions/setup-node@v1
20
+ - uses : actions/checkout@v3
21
+ - uses : actions/setup-node@v3
21
22
with :
22
23
node-version : ${{ matrix.node-version }}
23
24
24
25
- name : Cache npm
25
- uses : actions/cache@v1
26
+ uses : actions/cache@v4
26
27
with :
27
28
path : ~/.npm
28
29
key : ${{ runner.os }}-node-${{ matrix.node-version }}-${{ hashFiles('**/package-lock.json') }}
@@ -36,16 +37,17 @@ jobs:
36
37
strategy :
37
38
matrix :
38
39
node-version :
39
- - 14.x
40
- - 16.x
40
+ - 18.x
41
+ - 20.x
42
+ - 22.x
41
43
steps :
42
- - uses : actions/checkout@v1
43
- - uses : actions/setup-node@v1
44
+ - uses : actions/checkout@v3
45
+ - uses : actions/setup-node@v3
44
46
with :
45
47
node-version : ${{ matrix.node-version }}
46
48
47
49
- name : Cache npm
48
- uses : actions/cache@v1
50
+ uses : actions/cache@v4
49
51
with :
50
52
path : ~/.npm
51
53
key : ${{ runner.os }}-node-${{ matrix.node-version }}-${{ hashFiles('**/package-lock.json') }}
You can’t perform that action at this time.
0 commit comments