@@ -358,7 +358,7 @@ jobs:
358
358
--arch ${{ matrix.arch }} \
359
359
${additional_flags[*]}
360
360
- name : Upload Desktop Cmake
361
- uses : actions/upload-artifact@v3
361
+ uses : actions/upload-artifact@v4
362
362
if : ${{ !cancelled() }}
363
363
with :
364
364
name : cmake-${{ matrix.os }}-${{ matrix.arch }}-${{ matrix.ssl_variant }}
@@ -373,14 +373,14 @@ jobs:
373
373
echo "__SUMMARY_MISSING__" > build-results-desktop-${{ matrix.os }}-${{ matrix.arch }}-${{ matrix.ssl_variant }}.log.json
374
374
fi
375
375
- name : Upload Desktop integration tests artifact
376
- uses : actions/upload-artifact@v3
376
+ uses : actions/upload-artifact@v4
377
377
if : ${{ !cancelled() }}
378
378
with :
379
379
name : testapps-desktop-${{ matrix.os }}-${{ matrix.arch }}-${{ matrix.ssl_variant }}
380
380
path : testapps-desktop-${{ matrix.os }}-${{ matrix.arch }}-${{ matrix.ssl_variant }}
381
381
retention-days : ${{ env.artifactRetentionDays }}
382
382
- name : Upload Desktop build results artifact
383
- uses : actions/upload-artifact@v3
383
+ uses : actions/upload-artifact@v4
384
384
if : ${{ !cancelled() }}
385
385
with :
386
386
name : log-artifact
@@ -486,14 +486,14 @@ jobs:
486
486
echo "__SUMMARY_MISSING__" > build-results-android-${{ matrix.os }}.log.json
487
487
fi
488
488
- name : Upload Android integration tests artifact
489
- uses : actions/upload-artifact@v3
489
+ uses : actions/upload-artifact@v4
490
490
if : ${{ !cancelled() }}
491
491
with :
492
492
name : testapps-android-${{ matrix.os }}
493
493
path : testapps-android-${{ matrix.os }}
494
494
retention-days : ${{ env.artifactRetentionDays }}
495
495
- name : Upload Android build results artifact
496
- uses : actions/upload-artifact@v3
496
+ uses : actions/upload-artifact@v4
497
497
if : ${{ !cancelled() }}
498
498
with :
499
499
name : log-artifact
@@ -591,14 +591,14 @@ jobs:
591
591
echo "__SUMMARY_MISSING__" > build-results-ios-${{ matrix.os }}.log.json
592
592
fi
593
593
- name : Upload iOS integration tests artifact
594
- uses : actions/upload-artifact@v3
594
+ uses : actions/upload-artifact@v4
595
595
if : ${{ !cancelled() }}
596
596
with :
597
597
name : testapps-ios-${{ matrix.os }}
598
598
path : testapps-ios-${{ matrix.os }}
599
599
retention-days : ${{ env.artifactRetentionDays }}
600
600
- name : Upload iOS build results artifact
601
- uses : actions/upload-artifact@v3
601
+ uses : actions/upload-artifact@v4
602
602
if : ${{ !cancelled() }}
603
603
with :
604
604
name : log-artifact
@@ -695,14 +695,14 @@ jobs:
695
695
echo "__SUMMARY_MISSING__" > build-results-tvos-${{ matrix.os }}.log.json
696
696
fi
697
697
- name : Upload tvOS integration tests artifact
698
- uses : actions/upload-artifact@v3
698
+ uses : actions/upload-artifact@v4
699
699
if : ${{ !cancelled() }}
700
700
with :
701
701
name : testapps-tvos-${{ matrix.os }}
702
702
path : testapps-tvos-${{ matrix.os }}
703
703
retention-days : ${{ env.artifactRetentionDays }}
704
704
- name : Upload tvOS build results artifact
705
- uses : actions/upload-artifact@v3
705
+ uses : actions/upload-artifact@v4
706
706
if : ${{ !cancelled() }}
707
707
with :
708
708
name : log-artifact
@@ -835,7 +835,7 @@ jobs:
835
835
fi
836
836
- name : Upload Desktop test results artifact
837
837
if : ${{ !cancelled() }}
838
- uses : actions/upload-artifact@v3
838
+ uses : actions/upload-artifact@v4
839
839
with :
840
840
name : log-artifact
841
841
path : testapps/test-results-desktop-${{ matrix.os }}-${{ matrix.arch }}-${{ matrix.ssl_variant }}*
@@ -979,7 +979,7 @@ jobs:
979
979
fi
980
980
- name : Upload Desktop test results artifact
981
981
if : ${{ !cancelled() }}
982
- uses : actions/upload-artifact@v3
982
+ uses : actions/upload-artifact@v4
983
983
with :
984
984
name : log-artifact
985
985
path : testapps/test-results-desktop-${{ matrix.os }}-${{ matrix.arch }}-${{ matrix.ssl_variant }}*
@@ -1101,21 +1101,21 @@ jobs:
1101
1101
fi
1102
1102
- name : Upload Android test results artifact
1103
1103
if : ${{ !cancelled() }}
1104
- uses : actions/upload-artifact@v3
1104
+ uses : actions/upload-artifact@v4
1105
1105
with :
1106
1106
name : log-artifact
1107
1107
path : testapps/test-results-android-${{ matrix.build_os }}-${{ matrix.android_device }}-${{ matrix.test_type }}*
1108
1108
retention-days : ${{ env.artifactRetentionDays }}
1109
1109
- name : Upload Android test video artifact
1110
1110
if : ${{ steps.device-info.outputs.device_type == 'virtual' && !cancelled() }}
1111
- uses : actions/upload-artifact@v3
1111
+ uses : actions/upload-artifact@v4
1112
1112
with :
1113
1113
name : mobile-simulator-test-video-artifact
1114
1114
path : testapps/video-*-android-${{ matrix.build_os }}-${{ matrix.android_device }}-${{ matrix.test_type }}.mp4
1115
1115
retention-days : ${{ env.artifactRetentionDays }}
1116
1116
- name : Upload Android test logcat artifact
1117
1117
if : ${{ steps.device-info.outputs.device_type == 'virtual' && !cancelled() }}
1118
- uses : actions/upload-artifact@v3
1118
+ uses : actions/upload-artifact@v4
1119
1119
with :
1120
1120
name : mobile-simulator-test-logcat-artifact
1121
1121
path : testapps/logcat-*-android-${{ matrix.build_os }}-${{ matrix.android_device }}-${{ matrix.test_type }}.txt
@@ -1286,14 +1286,14 @@ jobs:
1286
1286
security delete-keychain tmp-keychain || true
1287
1287
- name : Upload iOS test results artifact
1288
1288
if : ${{ !cancelled() }}
1289
- uses : actions/upload-artifact@v3
1289
+ uses : actions/upload-artifact@v4
1290
1290
with :
1291
1291
name : log-artifact
1292
1292
path : testapps/test-results-ios-${{ matrix.build_os }}-${{ matrix.ios_device }}-${{ matrix.test_type }}*
1293
1293
retention-days : ${{ env.artifactRetentionDays }}
1294
1294
- name : Upload iOS test video artifact
1295
1295
if : ${{ steps.device-info.outputs.device_type == 'virtual' && !cancelled() }}
1296
- uses : actions/upload-artifact@v3
1296
+ uses : actions/upload-artifact@v4
1297
1297
with :
1298
1298
name : mobile-simulator-test-video-artifact
1299
1299
path : testapps/video-*-ios-${{ matrix.build_os }}-${{ matrix.ios_device }}-${{ matrix.test_type }}.mp4
@@ -1426,14 +1426,14 @@ jobs:
1426
1426
security delete-keychain tmp-keychain || true
1427
1427
- name : Upload tvOS test results artifact
1428
1428
if : ${{ !cancelled() }}
1429
- uses : actions/upload-artifact@v3
1429
+ uses : actions/upload-artifact@v4
1430
1430
with :
1431
1431
name : log-artifact
1432
1432
path : testapps/test-results-tvos-${{ matrix.build_os }}-${{ matrix.tvos_device }}*
1433
1433
retention-days : ${{ env.artifactRetentionDays }}
1434
1434
- name : Upload tvOS test video artifact
1435
1435
if : ${{ !cancelled() }}
1436
- uses : actions/upload-artifact@v3
1436
+ uses : actions/upload-artifact@v4
1437
1437
with :
1438
1438
name : mobile-simulator-test-video-artifact
1439
1439
path : testapps/video-*-tvos-${{ matrix.build_os }}-${{ matrix.tvos_device }}.mp4
0 commit comments