Skip to content

Commit 1a5c20b

Browse files
Bump actions/upload-artifact from 4 to 5 (#8560)
Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent cb80f55 commit 1a5c20b

File tree

2 files changed

+20
-20
lines changed

2 files changed

+20
-20
lines changed

.github/workflows/_reusable-build-images.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,13 @@ jobs:
4545
make build local-dest=/${{ runner.temp }}/build target=static-webserver
4646
- name: upload backend artifacts
4747
if: ${{ inputs.build-backend }}
48-
uses: actions/upload-artifact@v4
48+
uses: actions/upload-artifact@v5
4949
with:
5050
name: docker-buildx-images-${{ runner.os }}-${{ github.sha }}-backend
5151
path: /${{ runner.temp }}/build
5252
- name: upload frontend artifacts
5353
if: ${{ inputs.build-frontend }}
54-
uses: actions/upload-artifact@v4
54+
uses: actions/upload-artifact@v5
5555
with:
5656
name: docker-buildx-images-${{ runner.os }}-${{ github.sha }}-frontend
5757
path: /${{ runner.temp }}/build

.github/workflows/ci-testing-deploy.yml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -635,7 +635,7 @@ jobs:
635635
run: ./ci/github/unit-testing/catalog.bash test
636636
- name: upload failed tests logs
637637
if: ${{ failure() }}
638-
uses: actions/upload-artifact@v4
638+
uses: actions/upload-artifact@v5
639639
with:
640640
name: ${{ github.job }}_docker_logs
641641
path: ./services/catalog/test_failures
@@ -714,7 +714,7 @@ jobs:
714714
run: ./ci/github/unit-testing/datcore-adapter.bash test
715715
- name: upload failed tests logs
716716
if: ${{ failure() }}
717-
uses: actions/upload-artifact@v4
717+
uses: actions/upload-artifact@v5
718718
with:
719719
name: ${{ github.job }}_docker_logs
720720
path: ./services/datcore-adapter/test_failures
@@ -751,7 +751,7 @@ jobs:
751751
run: ./ci/github/unit-testing/director.bash test
752752
- name: upload failed tests logs
753753
if: ${{ failure() }}
754-
uses: actions/upload-artifact@v4
754+
uses: actions/upload-artifact@v5
755755
with:
756756
name: ${{ github.job }}_docker_logs
757757
path: ./services/director/test_failures
@@ -788,7 +788,7 @@ jobs:
788788
run: ./ci/github/unit-testing/director-v2.bash test
789789
- name: upload failed tests logs
790790
if: ${{ failure() }}
791-
uses: actions/upload-artifact@v4
791+
uses: actions/upload-artifact@v5
792792
with:
793793
name: ${{ github.job }}_docker_logs
794794
path: ./services/director-v2/test_failures
@@ -1481,7 +1481,7 @@ jobs:
14811481
run: ./ci/github/integration-testing/webserver.bash test 01
14821482
- name: upload failed tests logs
14831483
if: ${{ failure() }}
1484-
uses: actions/upload-artifact@v4
1484+
uses: actions/upload-artifact@v5
14851485
with:
14861486
name: ${{ github.job }}_docker_logs
14871487
path: ./services/web/server/test_failures
@@ -1519,7 +1519,7 @@ jobs:
15191519
run: ./ci/github/integration-testing/director-v2.bash test 01
15201520
- name: upload failed tests logs
15211521
if: ${{ failure() }}
1522-
uses: actions/upload-artifact@v4
1522+
uses: actions/upload-artifact@v5
15231523
with:
15241524
name: ${{ github.job }}_docker_logs
15251525
path: ./services/director-v2/test_failures
@@ -1565,7 +1565,7 @@ jobs:
15651565
run: ./ci/github/integration-testing/director-v2.bash test 02
15661566
- name: upload failed tests logs
15671567
if: ${{ failure() }}
1568-
uses: actions/upload-artifact@v4
1568+
uses: actions/upload-artifact@v5
15691569
with:
15701570
name: ${{ github.job }}_docker_logs
15711571
path: ./services/director-v2/test_failures
@@ -1605,7 +1605,7 @@ jobs:
16051605
run: ./ci/github/integration-testing/dynamic-sidecar.bash test 01
16061606
- name: upload failed tests logs
16071607
if: ${{ failure() }}
1608-
uses: actions/upload-artifact@v4
1608+
uses: actions/upload-artifact@v5
16091609
with:
16101610
name: ${{ github.job }}_docker_logs
16111611
path: ./services/dynamic-sidecar/test_failures
@@ -1643,7 +1643,7 @@ jobs:
16431643
run: ./ci/github/integration-testing/docker-api-proxy.bash test
16441644
- name: upload failed tests logs
16451645
if: ${{ failure() }}
1646-
uses: actions/upload-artifact@v4
1646+
uses: actions/upload-artifact@v5
16471647
with:
16481648
name: ${{ github.job }}_docker_logs
16491649
path: ./services/docker-api-proxy/test_failures
@@ -1683,7 +1683,7 @@ jobs:
16831683
run: ./ci/github/integration-testing/simcore-sdk.bash test
16841684
- name: upload failed tests logs
16851685
if: ${{ failure() }}
1686-
uses: actions/upload-artifact@v4
1686+
uses: actions/upload-artifact@v5
16871687
with:
16881688
name: ${{ github.job }}_docker_logs
16891689
path: ./packages/simcore-sdk/test_failures
@@ -1746,7 +1746,7 @@ jobs:
17461746
run: ./ci/github/system-testing/public-api.bash test
17471747
- name: upload failed tests logs
17481748
if: ${{ failure() }}
1749-
uses: actions/upload-artifact@v4
1749+
uses: actions/upload-artifact@v5
17501750
with:
17511751
name: ${{ github.job }}_docker_logs
17521752
path: ./test_failures
@@ -1780,13 +1780,13 @@ jobs:
17801780
- name: dump services setting schemas
17811781
run: export DOCKER_REGISTRY=local; export DOCKER_IMAGE_TAG=production; make settings-schema.json
17821782
- name: upload services settings schemas
1783-
uses: actions/upload-artifact@v4
1783+
uses: actions/upload-artifact@v5
17841784
with:
17851785
name: ${{ github.job }}_services_settings_schemas
17861786
path: ./services/**/settings-schema.json
17871787
- name: upload failed tests logs
17881788
if: ${{ failure() }}
1789-
uses: actions/upload-artifact@v4
1789+
uses: actions/upload-artifact@v5
17901790
with:
17911791
name: ${{ github.job }}_docker_logs
17921792
path: ./test_failures
@@ -1832,19 +1832,19 @@ jobs:
18321832
run: ./ci/github/system-testing/e2e.bash dump_docker_logs
18331833
- name: upload docker logs
18341834
if: ${{ failure() }}
1835-
uses: actions/upload-artifact@v4
1835+
uses: actions/upload-artifact@v5
18361836
with:
18371837
name: ${{ github.job }}_docker_logs
18381838
path: ./tests/e2e/test_failures
18391839
- name: upload screenshots
18401840
if: ${{ failure() }}
1841-
uses: actions/upload-artifact@v4
1841+
uses: actions/upload-artifact@v5
18421842
with:
18431843
name: ${{ github.job }}_screenshots
18441844
path: tests/e2e/screenshots
18451845
- name: upload e2e logs
18461846
if: ${{ failure() }}
1847-
uses: actions/upload-artifact@v4
1847+
uses: actions/upload-artifact@v5
18481848
with:
18491849
name: ${{ github.job }}_logs
18501850
path: tests/e2e/logs
@@ -1891,13 +1891,13 @@ jobs:
18911891
run: ./ci/github/system-testing/e2e-playwright.bash dump_docker_logs
18921892
- name: upload docker logs
18931893
if: ${{ failure() }}
1894-
uses: actions/upload-artifact@v4
1894+
uses: actions/upload-artifact@v5
18951895
with:
18961896
name: ${{ github.job }}_docker_logs
18971897
path: ./tests/e2e-playwright/test_failures
18981898
- name: upload tracing if failed
18991899
if: ${{ failure() }}
1900-
uses: actions/upload-artifact@v4
1900+
uses: actions/upload-artifact@v5
19011901
with:
19021902
name: ${{ github.job }}_tracing
19031903
path: tests/e2e-playwright/test-results

0 commit comments

Comments
 (0)