@@ -15,11 +15,11 @@ jobs:
15
15
runs-on : ubuntu-latest
16
16
steps :
17
17
- name : Check out repository
18
- uses : actions/checkout@v3
18
+ uses : actions/checkout@v4
19
19
with :
20
20
token : ${{ secrets.ACTIONS_PAT }}
21
21
- name : Setup node
22
- uses : actions/setup-node@v3
22
+ uses : actions/setup-node@v4
23
23
with :
24
24
node-version : 18.x
25
25
- name : Install dependencies
@@ -42,11 +42,11 @@ jobs:
42
42
runs-on : ubuntu-latest
43
43
steps :
44
44
- name : Check out repository
45
- uses : actions/checkout@v3
45
+ uses : actions/checkout@v4
46
46
with :
47
47
token : ${{ secrets.ACTIONS_PAT }}
48
48
- name : Setup node
49
- uses : actions/setup-node@v3
49
+ uses : actions/setup-node@v4
50
50
with :
51
51
node-version : 18.x
52
52
- name : Install dependencies
74
74
fail-fast : false
75
75
steps :
76
76
- name : Check out repository
77
- uses : actions/checkout@v3
77
+ uses : actions/checkout@v4
78
78
- name : Setup node ${{ matrix.node-version }}
79
- uses : actions/setup-node@v3
79
+ uses : actions/setup-node@v4
80
80
with :
81
81
node-version : ${{ matrix.node-version }}
82
82
- name : Install dependencies
@@ -124,13 +124,13 @@ jobs:
124
124
runs-on : ubuntu-latest
125
125
steps :
126
126
- name : Check out repository
127
- uses : actions/checkout@v3
127
+ uses : actions/checkout@v4
128
128
- name : Download test coverage artifact
129
129
uses : actions/download-artifact@v3.0.2
130
130
with :
131
131
name : coverage
132
132
path : ./coverage
133
133
- name : Upload coverage reports to Codecov
134
- uses : codecov/codecov-action@v3
134
+ uses : codecov/codecov-action@v4
135
135
with :
136
136
token : ${{ secrets.CODECOV_TOKEN }}
0 commit comments