Skip to content

Commit 8b45736

Browse files
Bump actions/upload-artifact from 4 to 5 (#3925)
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent ebb11bb commit 8b45736

File tree

1 file changed

+44
-44
lines changed

1 file changed

+44
-44
lines changed

.github/workflows/ci.yml

Lines changed: 44 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: Copy bootstrapped launcher
3131
run: ./mill -i copyJvmBootstrappedLauncher --directory artifacts/
3232
if: runner.os == 'Linux'
33-
- uses: actions/upload-artifact@v4
33+
- uses: actions/upload-artifact@v5
3434
if: runner.os == 'Linux'
3535
with:
3636
name: jvm-launchers
@@ -47,7 +47,7 @@ jobs:
4747
if: success() || failure()
4848
run: .github/scripts/generate-junit-reports.sc unit-tests 'Scala CLI Unit Tests' test-report.xml out/
4949
- name: Upload test report
50-
uses: actions/upload-artifact@v4
50+
uses: actions/upload-artifact@v5
5151
if: success() || failure()
5252
with:
5353
name: test-results-unit-tests
@@ -92,7 +92,7 @@ jobs:
9292
if: success() || failure()
9393
run: .github/scripts/generate-junit-reports.sc jvm-bootstrapped-tests 'Scala CLI JVM Bootstrapped Tests' test-report.xml out/
9494
- name: Upload test report
95-
uses: actions/upload-artifact@v4
95+
uses: actions/upload-artifact@v5
9696
if: success() || failure()
9797
with:
9898
name: test-results-jvm-bootstrapped-tests
@@ -117,7 +117,7 @@ jobs:
117117
if: success() || failure()
118118
run: .github/scripts/generate-junit-reports.sc jvm-tests-1 'Scala CLI JVM Tests (1)' test-report.xml out/
119119
- name: Upload test report
120-
uses: actions/upload-artifact@v4
120+
uses: actions/upload-artifact@v5
121121
if: success() || failure()
122122
with:
123123
name: test-results-jvm-tests-1
@@ -142,7 +142,7 @@ jobs:
142142
if: success() || failure()
143143
run: .github/scripts/generate-junit-reports.sc jvm-tests-2 'Scala CLI JVM Tests (2)' test-report.xml out/
144144
- name: Upload test report
145-
uses: actions/upload-artifact@v4
145+
uses: actions/upload-artifact@v5
146146
if: success() || failure()
147147
with:
148148
name: test-results-jvm-tests-2
@@ -167,7 +167,7 @@ jobs:
167167
if: success() || failure()
168168
run: .github/scripts/generate-junit-reports.sc jvm-tests-3 'Scala CLI JVM Tests (3)' test-report.xml out/
169169
- name: Upload test report
170-
uses: actions/upload-artifact@v4
170+
uses: actions/upload-artifact@v5
171171
if: success() || failure()
172172
with:
173173
name: test-results-jvm-tests-3
@@ -192,7 +192,7 @@ jobs:
192192
if: success() || failure()
193193
run: .github/scripts/generate-junit-reports.sc jvm-tests-4 'Scala CLI JVM Tests (4)' test-report.xml out/
194194
- name: Upload test report
195-
uses: actions/upload-artifact@v4
195+
uses: actions/upload-artifact@v5
196196
if: success() || failure()
197197
with:
198198
name: test-results-jvm-tests-4
@@ -217,7 +217,7 @@ jobs:
217217
if: success() || failure()
218218
run: .github/scripts/generate-junit-reports.sc jvm-tests-5 'Scala CLI JVM Tests (5)' test-report.xml out/
219219
- name: Upload test report
220-
uses: actions/upload-artifact@v4
220+
uses: actions/upload-artifact@v5
221221
if: success() || failure()
222222
with:
223223
name: test-results-jvm-tests-5
@@ -242,7 +242,7 @@ jobs:
242242
run: .github/scripts/generate-os-packages.sh
243243
- name: Copy artifacts
244244
run: ./mill -i copyDefaultLauncher --directory artifacts/
245-
- uses: actions/upload-artifact@v4
245+
- uses: actions/upload-artifact@v5
246246
with:
247247
name: linux-launchers
248248
path: artifacts/
@@ -276,7 +276,7 @@ jobs:
276276
if: success() || failure()
277277
run: .github/scripts/generate-junit-reports.sc linux-tests-1 'Scala CLI Linux Tests (1)' test-report.xml out/
278278
- name: Upload test report
279-
uses: actions/upload-artifact@v4
279+
uses: actions/upload-artifact@v5
280280
if: success() || failure()
281281
with:
282282
name: test-results-linux-tests-1
@@ -309,7 +309,7 @@ jobs:
309309
if: success() || failure()
310310
run: .github/scripts/generate-junit-reports.sc linux-tests-2 'Scala CLI Linux Tests (2)' test-report.xml out/
311311
- name: Upload test report
312-
uses: actions/upload-artifact@v4
312+
uses: actions/upload-artifact@v5
313313
if: success() || failure()
314314
with:
315315
name: test-results-linux-tests-2
@@ -342,7 +342,7 @@ jobs:
342342
if: success() || failure()
343343
run: .github/scripts/generate-junit-reports.sc linux-tests-3 'Scala CLI Linux Tests (3)' test-report.xml out/
344344
- name: Upload test report
345-
uses: actions/upload-artifact@v4
345+
uses: actions/upload-artifact@v5
346346
if: success() || failure()
347347
with:
348348
name: test-results-linux-tests-3
@@ -375,7 +375,7 @@ jobs:
375375
if: success() || failure()
376376
run: .github/scripts/generate-junit-reports.sc linux-tests-4 'Scala CLI Linux Tests (4)' test-report.xml out/
377377
- name: Upload test report
378-
uses: actions/upload-artifact@v4
378+
uses: actions/upload-artifact@v5
379379
if: success() || failure()
380380
with:
381381
name: test-results-linux-tests-4
@@ -408,7 +408,7 @@ jobs:
408408
if: success() || failure()
409409
run: .github/scripts/generate-junit-reports.sc linux-tests-5 'Scala CLI Linux Tests (5)' test-report.xml out/
410410
- name: Upload test report
411-
uses: actions/upload-artifact@v4
411+
uses: actions/upload-artifact@v5
412412
if: success() || failure()
413413
with:
414414
name: test-results-linux-tests-5
@@ -430,7 +430,7 @@ jobs:
430430
env:
431431
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
432432
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
433-
- uses: actions/upload-artifact@v4
433+
- uses: actions/upload-artifact@v5
434434
with:
435435
name: linux-aarch64-launchers
436436
path: artifacts/
@@ -458,7 +458,7 @@ jobs:
458458
run: .github/scripts/generate-os-packages.sh
459459
- name: Copy artifacts
460460
run: ./mill -i copyDefaultLauncher --directory artifacts/
461-
- uses: actions/upload-artifact@v4
461+
- uses: actions/upload-artifact@v5
462462
with:
463463
name: macos-launchers
464464
path: artifacts/
@@ -494,7 +494,7 @@ jobs:
494494
if: success() || failure()
495495
run: .github/scripts/generate-junit-reports.sc macos-tests-1 'Scala CLI MacOS Tests (1)' test-report.xml out/
496496
- name: Upload test report
497-
uses: actions/upload-artifact@v4
497+
uses: actions/upload-artifact@v5
498498
if: success() || failure()
499499
with:
500500
name: test-results-macos-tests-1
@@ -529,7 +529,7 @@ jobs:
529529
if: success() || failure()
530530
run: .github/scripts/generate-junit-reports.sc macos-tests-5 'Scala CLI MacOS Tests (5)' test-report.xml out/
531531
- name: Upload test report
532-
uses: actions/upload-artifact@v4
532+
uses: actions/upload-artifact@v5
533533
if: success() || failure()
534534
with:
535535
name: test-results-macos-tests-5
@@ -556,7 +556,7 @@ jobs:
556556
run: .github/scripts/generate-os-packages.sh
557557
- name: Copy artifacts
558558
run: ./mill -i copyDefaultLauncher --directory artifacts/
559-
- uses: actions/upload-artifact@v4
559+
- uses: actions/upload-artifact@v5
560560
with:
561561
name: macos-m1-launchers
562562
path: artifacts/
@@ -592,7 +592,7 @@ jobs:
592592
if: success() || failure()
593593
run: .github/scripts/generate-junit-reports.sc macos-m1-tests-1 'Scala CLI MacOS M1 Tests (1)' test-report.xml out/
594594
- name: Upload test report
595-
uses: actions/upload-artifact@v4
595+
uses: actions/upload-artifact@v5
596596
if: success() || failure()
597597
with:
598598
name: test-results-macos-m1-tests-1
@@ -627,7 +627,7 @@ jobs:
627627
if: success() || failure()
628628
run: .github/scripts/generate-junit-reports.sc macos-m1-tests-2 'Scala CLI MacOS M1 Tests (2)' test-report.xml out/
629629
- name: Upload test report
630-
uses: actions/upload-artifact@v4
630+
uses: actions/upload-artifact@v5
631631
if: success() || failure()
632632
with:
633633
name: test-results-macos-m1-tests-2
@@ -662,7 +662,7 @@ jobs:
662662
if: success() || failure()
663663
run: .github/scripts/generate-junit-reports.sc macos-m1-tests-3 'Scala CLI MacOS M1 Tests (3)' test-report.xml out/
664664
- name: Upload test report
665-
uses: actions/upload-artifact@v4
665+
uses: actions/upload-artifact@v5
666666
if: success() || failure()
667667
with:
668668
name: test-results-macos-m1-tests-3
@@ -697,7 +697,7 @@ jobs:
697697
if: success() || failure()
698698
run: .github/scripts/generate-junit-reports.sc macos-m1-tests-4 'Scala CLI MacOS M1 Tests (4)' test-report.xml out/
699699
- name: Upload test report
700-
uses: actions/upload-artifact@v4
700+
uses: actions/upload-artifact@v5
701701
if: success() || failure()
702702
with:
703703
name: test-results-macos-m1-tests-4
@@ -732,7 +732,7 @@ jobs:
732732
if: success() || failure()
733733
run: .github/scripts/generate-junit-reports.sc macos-m1-tests-5 'Scala CLI MacOS M1 Tests (5)' test-report.xml out/
734734
- name: Upload test report
735-
uses: actions/upload-artifact@v4
735+
uses: actions/upload-artifact@v5
736736
if: success() || failure()
737737
with:
738738
name: test-results-macos-m1-tests-5
@@ -762,7 +762,7 @@ jobs:
762762
shell: bash
763763
- name: Copy artifacts
764764
run: ./mill -i copyDefaultLauncher --directory artifacts/
765-
- uses: actions/upload-artifact@v4
765+
- uses: actions/upload-artifact@v5
766766
with:
767767
name: windows-launchers
768768
path: artifacts/
@@ -804,7 +804,7 @@ jobs:
804804
if: success() || failure()
805805
run: scala-cli shebang .github/scripts/generate-junit-reports.sc windows-tests-1 'Scala CLI Windows Tests (1)' test-report.xml out/
806806
- name: Upload test report
807-
uses: actions/upload-artifact@v4
807+
uses: actions/upload-artifact@v5
808808
if: success() || failure()
809809
with:
810810
name: test-results-windows-tests-1
@@ -845,7 +845,7 @@ jobs:
845845
if: success() || failure()
846846
run: scala-cli shebang .github/scripts/generate-junit-reports.sc windows-tests-2 'Scala CLI Windows Tests (2)' test-report.xml out/
847847
- name: Upload test report
848-
uses: actions/upload-artifact@v4
848+
uses: actions/upload-artifact@v5
849849
if: success() || failure()
850850
with:
851851
name: test-results-windows-tests-2
@@ -886,7 +886,7 @@ jobs:
886886
if: success() || failure()
887887
run: scala-cli shebang .github/scripts/generate-junit-reports.sc windows-tests-3 'Scala CLI Windows Tests (3)' test-report.xml out/
888888
- name: Upload test report
889-
uses: actions/upload-artifact@v4
889+
uses: actions/upload-artifact@v5
890890
if: success() || failure()
891891
with:
892892
name: test-results-windows-tests-3
@@ -927,7 +927,7 @@ jobs:
927927
if: success() || failure()
928928
run: scala-cli shebang .github/scripts/generate-junit-reports.sc windows-tests-4 'Scala CLI Windows Tests (4)' test-report.xml out/
929929
- name: Upload test report
930-
uses: actions/upload-artifact@v4
930+
uses: actions/upload-artifact@v5
931931
if: success() || failure()
932932
with:
933933
name: test-results-windows-tests-4
@@ -968,7 +968,7 @@ jobs:
968968
if: success() || failure()
969969
run: scala-cli shebang .github/scripts/generate-junit-reports.sc windows-tests-5 'Scala CLI Windows Tests (5)' test-report.xml out/
970970
- name: Upload test report
971-
uses: actions/upload-artifact@v4
971+
uses: actions/upload-artifact@v5
972972
if: success() || failure()
973973
with:
974974
name: test-results-windows-tests-5
@@ -990,7 +990,7 @@ jobs:
990990
shell: bash
991991
- name: Copy artifacts
992992
run: ./mill -i copyMostlyStaticLauncher --directory artifacts/
993-
- uses: actions/upload-artifact@v4
993+
- uses: actions/upload-artifact@v5
994994
with:
995995
name: mostly-static-launchers
996996
path: artifacts/
@@ -1029,7 +1029,7 @@ jobs:
10291029
if: success() || failure()
10301030
run: .github/scripts/generate-junit-reports.sc native-mostly-static-tests-1 'Scala CLI Native Mostly Static Tests (1)' test-report.xml out/
10311031
- name: Upload test report
1032-
uses: actions/upload-artifact@v4
1032+
uses: actions/upload-artifact@v5
10331033
if: success() || failure()
10341034
with:
10351035
name: test-results-native-mostly-static-tests-1
@@ -1071,7 +1071,7 @@ jobs:
10711071
if: success() || failure()
10721072
run: .github/scripts/generate-junit-reports.sc native-mostly-static-tests-2 'Scala CLI Native Mostly Static Tests (2)' test-report.xml out/
10731073
- name: Upload test report
1074-
uses: actions/upload-artifact@v4
1074+
uses: actions/upload-artifact@v5
10751075
if: success() || failure()
10761076
with:
10771077
name: test-results-native-mostly-static-tests-2
@@ -1104,7 +1104,7 @@ jobs:
11041104
if: success() || failure()
11051105
run: .github/scripts/generate-junit-reports.sc native-mostly-static-tests-3 'Scala CLI Native Mostly Static Tests (3)' test-report.xml out/
11061106
- name: Upload test report
1107-
uses: actions/upload-artifact@v4
1107+
uses: actions/upload-artifact@v5
11081108
if: success() || failure()
11091109
with:
11101110
name: test-results-native-mostly-static-tests-3
@@ -1137,7 +1137,7 @@ jobs:
11371137
if: success() || failure()
11381138
run: .github/scripts/generate-junit-reports.sc native-mostly-static-tests-4 'Scala CLI Native Mostly Static Tests (4)' test-report.xml out/
11391139
- name: Upload test report
1140-
uses: actions/upload-artifact@v4
1140+
uses: actions/upload-artifact@v5
11411141
if: success() || failure()
11421142
with:
11431143
name: test-results-native-mostly-static-tests-4
@@ -1170,7 +1170,7 @@ jobs:
11701170
if: success() || failure()
11711171
run: .github/scripts/generate-junit-reports.sc native-mostly-static-tests-5 'Scala CLI Native Mostly Static Tests (5)' test-report.xml out/
11721172
- name: Upload test report
1173-
uses: actions/upload-artifact@v4
1173+
uses: actions/upload-artifact@v5
11741174
if: success() || failure()
11751175
with:
11761176
name: test-results-native-mostly-static-tests-5
@@ -1193,7 +1193,7 @@ jobs:
11931193
shell: bash
11941194
- name: Copy artifacts
11951195
run: ./mill -i copyStaticLauncher --directory artifacts/
1196-
- uses: actions/upload-artifact@v4
1196+
- uses: actions/upload-artifact@v5
11971197
with:
11981198
name: static-launchers
11991199
path: artifacts/
@@ -1232,7 +1232,7 @@ jobs:
12321232
if: success() || failure()
12331233
run: .github/scripts/generate-junit-reports.sc native-static-tests-1 'Scala CLI Native Static Tests (1)' test-report.xml out/
12341234
- name: Upload test report
1235-
uses: actions/upload-artifact@v4
1235+
uses: actions/upload-artifact@v5
12361236
if: success() || failure()
12371237
with:
12381238
name: test-results-native-static-tests-1
@@ -1276,7 +1276,7 @@ jobs:
12761276
if: success() || failure()
12771277
run: .github/scripts/generate-junit-reports.sc native-static-tests-2 'Scala CLI Native Static Tests (2)' test-report.xml out/
12781278
- name: Upload test report
1279-
uses: actions/upload-artifact@v4
1279+
uses: actions/upload-artifact@v5
12801280
if: success() || failure()
12811281
with:
12821282
name: test-results-native-static-tests-2
@@ -1311,7 +1311,7 @@ jobs:
13111311
if: success() || failure()
13121312
run: .github/scripts/generate-junit-reports.sc native-static-tests-3 'Scala CLI Native Static Tests (3)' test-report.xml out/
13131313
- name: Upload test report
1314-
uses: actions/upload-artifact@v4
1314+
uses: actions/upload-artifact@v5
13151315
if: success() || failure()
13161316
with:
13171317
name: test-results-native-static-tests-3
@@ -1346,7 +1346,7 @@ jobs:
13461346
if: success() || failure()
13471347
run: .github/scripts/generate-junit-reports.sc native-static-tests-4 'Scala CLI Native Static Tests (4)' test-report.xml out/
13481348
- name: Upload test report
1349-
uses: actions/upload-artifact@v4
1349+
uses: actions/upload-artifact@v5
13501350
if: success() || failure()
13511351
with:
13521352
name: test-results-native-static-tests-4
@@ -1381,7 +1381,7 @@ jobs:
13811381
if: success() || failure()
13821382
run: .github/scripts/generate-junit-reports.sc native-static-tests-5 'Scala CLI Native Static Tests (5)' test-report.xml out/
13831383
- name: Upload test report
1384-
uses: actions/upload-artifact@v4
1384+
uses: actions/upload-artifact@v5
13851385
if: success() || failure()
13861386
with:
13871387
name: test-results-native-static-tests-5
@@ -1409,7 +1409,7 @@ jobs:
14091409
if: success() || failure()
14101410
run: .github/scripts/generate-junit-reports.sc docs-tests 'Scala CLI Docs Tests' test-report.xml out/
14111411
- name: Upload test report
1412-
uses: actions/upload-artifact@v4
1412+
uses: actions/upload-artifact@v5
14131413
if: success() || failure()
14141414
with:
14151415
name: test-results-docs-tests
@@ -1522,7 +1522,7 @@ jobs:
15221522
with:
15231523
jvm: "temurin:17"
15241524
- run: ./mill -i ci.copyVcRedist
1525-
- uses: actions/upload-artifact@v4
1525+
- uses: actions/upload-artifact@v5
15261526
with:
15271527
name: vc-redist-launchers
15281528
path: artifacts/

0 commit comments

Comments
 (0)