File tree 2 files changed +10
-10
lines changed
2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -11,19 +11,19 @@ jobs:
11
11
build :
12
12
runs-on : ubuntu-latest
13
13
steps :
14
- - uses : actions/checkout@v3
14
+ - uses : actions/checkout@v4
15
15
16
16
- name : Setup Node.js environment
17
- uses : actions/setup-node@v3
17
+ uses : actions/setup-node@v4
18
18
with :
19
- node-version : " 16 .x"
19
+ node-version : " 22 .x"
20
20
21
21
- name : Get yarn cache directory path
22
22
id : yarn-cache-dir-path
23
23
run : echo "::set-output name=dir::$(yarn cache dir)"
24
24
25
25
- name : Cache yarn cache
26
- uses : actions/cache@v2
26
+ uses : actions/cache@v4
27
27
id : cache-yarn-cache
28
28
with :
29
29
path : ${{ steps.yarn-cache-dir-path.outputs.dir }}
33
33
34
34
- name : Cache node_modules
35
35
id : cache-node-modules
36
- uses : actions/cache@v2
36
+ uses : actions/cache@v4
37
37
with :
38
38
path : node_modules
39
39
key : ${{ runner.os }}-${{ matrix.node-version }}-nodemodules-${{ hashFiles('**/yarn.lock') }}
Original file line number Diff line number Diff line change @@ -10,19 +10,19 @@ jobs:
10
10
runs-on : ubuntu-latest
11
11
12
12
steps :
13
- - uses : actions/checkout@v3
13
+ - uses : actions/checkout@v4
14
14
15
15
- name : Setup Node.js environment
16
- uses : actions/setup-node@v3
16
+ uses : actions/setup-node@v4
17
17
with :
18
- node-version : " 16 .x"
18
+ node-version : " 22 .x"
19
19
20
20
- name : Get yarn cache directory path
21
21
id : yarn-cache-dir-path
22
22
run : echo "::set-output name=dir::$(yarn cache dir)"
23
23
24
24
- name : Cache yarn cache
25
- uses : actions/cache@v3
25
+ uses : actions/cache@v4
26
26
id : cache-yarn-cache
27
27
with :
28
28
path : ${{ steps.yarn-cache-dir-path.outputs.dir }}
32
32
33
33
- name : Cache node_modules
34
34
id : cache-node-modules
35
- uses : actions/cache@v3
35
+ uses : actions/cache@v4
36
36
with :
37
37
path : node_modules
38
38
key : ${{ runner.os }}-${{ matrix.node-version }}-nodemodules-${{ hashFiles('**/yarn.lock') }}
You can’t perform that action at this time.
0 commit comments