File tree 2 files changed +9
-11
lines changed
2 files changed +9
-11
lines changed Original file line number Diff line number Diff line change @@ -14,10 +14,10 @@ jobs:
14
14
15
15
steps :
16
16
- name : Checkout code
17
- uses : actions/checkout@v2
17
+ uses : actions/checkout@v3
18
18
19
19
- name : Use Node.js 16
20
- uses : actions/setup-node@v2
20
+ uses : actions/setup-node@v3
21
21
with :
22
22
node-version : 16.x
23
23
@@ -36,19 +36,18 @@ jobs:
36
36
- ubuntu-latest
37
37
- windows-latest
38
38
node-version :
39
- - 12.x
40
39
- 14.x
41
40
- 16.x
42
- - 17 .x
41
+ - 18 .x
43
42
44
43
runs-on : ${{ matrix.os }}
45
44
46
45
steps :
47
46
- name : Checkout code
48
- uses : actions/checkout@v2
47
+ uses : actions/checkout@v3
49
48
50
49
- name : Use Node.js ${{ matrix.node-version }}
51
- uses : actions/setup-node@v2
50
+ uses : actions/setup-node@v3
52
51
with :
53
52
node-version : ${{ matrix.node-version }}
54
53
59
58
run : npm run tap -- --coverage-report=lcov
60
59
61
60
- name : Upload coverage report to Codecov
62
- uses : codecov/codecov-action@v2
61
+ uses : codecov/codecov-action@v3
Original file line number Diff line number Diff line change @@ -36,22 +36,21 @@ jobs:
36
36
- ubuntu-latest
37
37
- windows-latest
38
38
node-version :
39
- - 12.x
40
39
- 14.x
41
40
- 16.x
42
- - 17 .x
41
+ - 18 .x
43
42
44
43
runs-on : ${{ matrix.os }}
45
44
46
45
steps :
47
46
- name : Checkout code
48
- uses : actions/checkout@v2
47
+ uses : actions/checkout@v3
49
48
with :
50
49
repository : ${{ github.event.inputs.repository }}
51
50
ref : ${{ github.event.inputs.ref }}
52
51
53
52
- name : Use Node.js ${{ matrix.node-version }}
54
- uses : actions/setup-node@v2
53
+ uses : actions/setup-node@v3
55
54
with :
56
55
node-version : ${{ matrix.node-version }}
57
56
You can’t perform that action at this time.
0 commit comments