@@ -31,10 +31,10 @@ jobs:
31
31
32
32
steps :
33
33
- name : Checkout source
34
- uses : actions/checkout@v4
34
+ uses : actions/checkout@v5
35
35
36
36
- name : Install Node.js ${{ matrix.node-version }}
37
- uses : actions/setup-node@v4
37
+ uses : actions/setup-node@v5
38
38
with :
39
39
node-version : ${{ matrix.node-version }}
40
40
cache : npm
46
46
run : npm run coverage
47
47
48
48
- name : Send code coverage results to Coveralls
49
- uses : coverallsapp/github-action@643bc377ffa44ace6394b2b5d0d3950076de9f63
49
+ uses : coverallsapp/github-action@648a8eb78e6d50909eff900e4ec85cab4524a45b
50
50
with :
51
51
parallel : true
52
52
flag-name : Node.js ${{ matrix.node-version }} / ${{ matrix.os }}
58
58
needs : test
59
59
steps :
60
60
- name : Let Coveralls know that all tests have finished
61
- uses : coverallsapp/github-action@643bc377ffa44ace6394b2b5d0d3950076de9f63
61
+ uses : coverallsapp/github-action@648a8eb78e6d50909eff900e4ec85cab4524a45b
62
62
with :
63
63
parallel-finished : true
64
64
@@ -69,10 +69,10 @@ jobs:
69
69
70
70
steps :
71
71
- name : Checkout source
72
- uses : actions/checkout@v4
72
+ uses : actions/checkout@v5
73
73
74
74
- name : Install Node.js
75
- uses : actions/setup-node@v4
75
+ uses : actions/setup-node@v5
76
76
with :
77
77
node-version : " 20"
78
78
cache : npm
@@ -119,18 +119,18 @@ jobs:
119
119
120
120
steps :
121
121
- name : Checkout source
122
- uses : actions/checkout@v4
122
+ uses : actions/checkout@v5
123
123
124
124
- name : Install Node.js ${{ matrix.node-version }}
125
- uses : actions/setup-node@v4
125
+ uses : actions/setup-node@v5
126
126
with :
127
127
node-version : ${{ matrix.node-version }}
128
128
129
129
- name : Install production dependencies
130
130
run : npm install --production
131
131
132
132
- name : Download publish artifact
133
- uses : actions/download-artifact@v4
133
+ uses : actions/download-artifact@v5
134
134
with :
135
135
name : publish-artifact
136
136
path : lib
@@ -219,15 +219,15 @@ jobs:
219
219
220
220
steps :
221
221
- name : Checkout source
222
- uses : actions/checkout@v4
222
+ uses : actions/checkout@v5
223
223
224
224
- name : Install Node.js
225
- uses : actions/setup-node@v4
225
+ uses : actions/setup-node@v5
226
226
with :
227
227
node-version : " 20"
228
228
229
229
- name : Download publish artifact
230
- uses : actions/download-artifact@v4
230
+ uses : actions/download-artifact@v5
231
231
with :
232
232
name : publish-artifact
233
233
path : lib
0 commit comments