File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -3,29 +3,29 @@ name: Continuous Integration
3
3
on :
4
4
pull_request :
5
5
push :
6
- branches : main
6
+ branches : [ main]
7
7
8
8
jobs :
9
9
build :
10
10
runs-on : ubuntu-latest
11
11
strategy :
12
12
matrix :
13
- node-version : [12 .x]
13
+ node-version : [18 .x]
14
14
15
15
steps :
16
- - uses : actions/checkout@v2
16
+ - uses : actions/checkout@v4
17
17
18
18
- name : Use Node.js ${{ matrix.node-version }}
19
- uses : actions/setup-node@v2
19
+ uses : actions/setup-node@v4
20
20
with :
21
21
node-version : ${{ matrix.node-version }}
22
22
23
23
- name : Get Yarn cache directory
24
24
id : yarn-cache-dir-path
25
- run : echo "::set-output name= dir:: $(yarn cache dir)"
25
+ run : echo "dir= $(yarn cache dir)" >> $GITHUB_OUTPUT
26
26
27
27
- name : Use Yarn cache
28
- uses : actions/cache@v2
28
+ uses : actions/cache@v4
29
29
id : yarn-cache
30
30
with :
31
31
path : ${{ steps.yarn-cache-dir-path.outputs.dir }}
You can’t perform that action at this time.
0 commit comments