95
95
runs-on : ubuntu-latest
96
96
steps :
97
97
- name : Checkout repository
98
- uses : actions/checkout@v3
98
+ uses : actions/checkout@v4
99
99
- name : Use custom container image if specified
100
100
if : ${{ github.event.inputs.override_container_image != '' }}
101
101
run : echo "inner_container_image=${{ github.event.inputs.override_container_image }}"
@@ -119,7 +119,7 @@ jobs:
119
119
- name : Fix HOME path
120
120
run : echo "HOME=/root" >> $GITHUB_ENV
121
121
- name : Checkout repository
122
- uses : actions/checkout@v3
122
+ uses : actions/checkout@v4
123
123
- name : Checkout submodules
124
124
run : |
125
125
git config --global --add safe.directory '*'
@@ -131,7 +131,7 @@ jobs:
131
131
run : ./build.sh
132
132
- name : Build test executable
133
133
run : ./desktop/packages/mullvad-vpn/scripts/build-test-executable.sh
134
- - uses : actions/upload-artifact@v3
134
+ - uses : actions/upload-artifact@v4
135
135
if : ' !cancelled()'
136
136
with :
137
137
name : linux-build
@@ -154,7 +154,7 @@ jobs:
154
154
matrix :
155
155
os : ${{ fromJSON(needs.prepare-matrices.outputs.linux_matrix) }}
156
156
steps :
157
- - uses : actions/download-artifact@v3
157
+ - uses : actions/download-artifact@v4
158
158
if : ${{ needs.build-linux.result == 'success' }}
159
159
with :
160
160
name : linux-build
@@ -167,7 +167,7 @@ jobs:
167
167
git fetch --tags --prune-tags --force
168
168
export TEST_FILTERS="${{ github.event.inputs.tests }}"
169
169
./test/scripts/ci-runtests.sh ${{ matrix.os }}
170
- - uses : actions/upload-artifact@v3
170
+ - uses : actions/upload-artifact@v4
171
171
if : ' !cancelled()'
172
172
with :
173
173
name : ${{ matrix.os }}_report
@@ -210,7 +210,7 @@ jobs:
210
210
- name : Build test executable
211
211
shell : bash
212
212
run : ./desktop/packages/mullvad-vpn/scripts/build-test-executable.sh
213
- - uses : actions/upload-artifact@v3
213
+ - uses : actions/upload-artifact@v4
214
214
if : ' !cancelled()'
215
215
with :
216
216
name : windows-build
@@ -230,7 +230,7 @@ jobs:
230
230
matrix :
231
231
os : ${{ fromJSON(needs.prepare-matrices.outputs.windows_matrix) }}
232
232
steps :
233
- - uses : actions/download-artifact@v3
233
+ - uses : actions/download-artifact@v4
234
234
if : ${{ needs.build-windows.result == 'success' }}
235
235
with :
236
236
name : windows-build
@@ -243,7 +243,7 @@ jobs:
243
243
git fetch --tags --prune-tags --force
244
244
export TEST_FILTERS="${{ github.event.inputs.tests }}"
245
245
./test/scripts/ci-runtests.sh ${{ matrix.os }}
246
- - uses : actions/upload-artifact@v3
246
+ - uses : actions/upload-artifact@v4
247
247
if : ' !cancelled()'
248
248
with :
249
249
name : ${{ matrix.os }}_report
@@ -285,7 +285,7 @@ jobs:
285
285
run : ./build.sh
286
286
- name : Build test executable
287
287
run : ./desktop/packages/mullvad-vpn/scripts/build-test-executable.sh
288
- - uses : actions/upload-artifact@v3
288
+ - uses : actions/upload-artifact@v4
289
289
if : ' !cancelled()'
290
290
with :
291
291
name : macos-build
@@ -307,7 +307,7 @@ jobs:
307
307
matrix :
308
308
os : ${{ fromJSON(needs.prepare-matrices.outputs.macos_matrix) }}
309
309
steps :
310
- - uses : actions/download-artifact@v3
310
+ - uses : actions/download-artifact@v4
311
311
if : ${{ needs.build-macos.result == 'success' }}
312
312
with :
313
313
name : macos-build
@@ -320,7 +320,7 @@ jobs:
320
320
git fetch --tags --prune-tags --force
321
321
export TEST_FILTERS="${{ github.event.inputs.tests }}"
322
322
./test/scripts/ci-runtests.sh ${{ matrix.os }}
323
- - uses : actions/upload-artifact@v3
323
+ - uses : actions/upload-artifact@v4
324
324
if : ' !cancelled()'
325
325
with :
326
326
name : ${{ matrix.os }}_report
@@ -337,7 +337,7 @@ jobs:
337
337
steps :
338
338
- name : Checkout repository
339
339
uses : actions/checkout@v4
340
- - uses : actions/download-artifact@v3
340
+ - uses : actions/download-artifact@v4
341
341
with :
342
342
path : ./test/.ci-logs/artifacts
343
343
- name : Generate test result matrix
@@ -348,7 +348,7 @@ jobs:
348
348
cp ./.ci-logs/artifacts/*_report/*_report ./.ci-logs/
349
349
cargo run --bin test-manager format-test-reports ./.ci-logs/*_report \
350
350
| tee summary.html >> $GITHUB_STEP_SUMMARY
351
- - uses : actions/upload-artifact@v3
351
+ - uses : actions/upload-artifact@v4
352
352
with :
353
353
name : summary.html
354
354
path : test/summary.html
0 commit comments