Revert "Update artifact-handling actions to latest version." (#16689)
Revert "Update artifact-handling actions to latest version. (#16639)" This reverts commit d32b2760a0f1014df0828b6f5051995819e7eec0.
Tasos Katsoulas committed
Dec 29, 2023 at 15:36 UTC
18fd72e230a5f970f777a21298889dd795f1b279
2 files changed
+17
-18
.github/workflows/build.yml
+16
-17
@@ -113,7 +113,7 @@ jobs:
113
- name: Store
114
id: store
115
if: needs.file-check.outputs.run == 'true'
116
- uses: actions/upload-artifact@v4
116
+ uses: actions/upload-artifact@v3
117
with:
118
name: dist-tarball
119
path: artifacts/*.tar.gz
@@ -202,9 +202,9 @@ jobs:
202
- name: Store
203
id: store
204
if: needs.file-check.outputs.run == 'true'
205
- uses: actions/upload-artifact@v4
205
+ uses: actions/upload-artifact@v3
206
with:
207
- name: static-archive-${{ matrix.arch }}
207
+ name: static-archive
208
path: artifacts/*.gz.run
209
retention-days: 30
210
- name: Failure Notification
@@ -345,7 +345,7 @@ jobs:
345
tags: test:${{ matrix.artifact_key }}
346
- name: Upload image artifact
347
id: upload
348
- uses: actions/upload-artifact@v4
348
+ uses: actions/upload-artifact@v3
349
with:
350
name: ${{ matrix.artifact_key }}-test-env
351
path: /tmp/image.tar
@@ -401,7 +401,7 @@ jobs:
401
- name: Fetch test environment
402
id: fetch
403
if: needs.file-check.outputs.run == 'true'
404
- uses: actions/download-artifact@v4
404
+ uses: actions/download-artifact@v3
405
with:
406
name: ${{ matrix.artifact_key }}-test-env
407
- name: Load test environment
@@ -484,7 +484,7 @@ jobs:
484
- name: Fetch dist tarball artifacts
485
id: fetch-tarball
486
if: needs.file-check.outputs.run == 'true'
487
- uses: actions/download-artifact@v4
487
+ uses: actions/download-artifact@v3
488
with:
489
name: dist-tarball
490
path: dist-tarball
@@ -503,7 +503,7 @@ jobs:
503
- name: Fetch test environment
504
id: fetch-test-environment
505
if: needs.file-check.outputs.run == 'true'
506
- uses: actions/download-artifact@v4
506
+ uses: actions/download-artifact@v3
507
with:
508
name: ${{ matrix.artifact_key }}-test-env
509
- name: Load test environment
@@ -565,18 +565,17 @@ jobs:
565
- name: Retrieve Dist Tarball
566
id: fetch-dist
567
if: needs.file-check.outputs.run == 'true'
568
- uses: actions/download-artifact@v4
568
+ uses: actions/download-artifact@v3
569
with:
570
name: dist-tarball
571
path: dist-tarball
572
- name: Retrieve Static Build Artifacts
573
id: fetch-static
574
if: needs.file-check.outputs.run == 'true'
575
- uses: actions/download-artifact@v4
575
+ uses: actions/download-artifact@v3
576
with:
577
- pattern: static-archive-*
577
+ name: static-archive
578
path: static-archive
579
- merge-multiple: true
579
- name: Prepare Artifacts
580
id: consolidate
581
if: needs.file-check.outputs.run == 'true'
@@ -592,7 +591,7 @@ jobs:
591
- name: Store Artifacts
592
id: store
593
if: needs.file-check.outputs.run == 'true'
595
- uses: actions/upload-artifact@v4
594
+ uses: actions/upload-artifact@v3
595
with:
596
name: final-artifacts
597
path: artifacts/*
@@ -648,7 +647,7 @@ jobs:
647
- name: Fetch artifacts
648
id: fetch
649
if: needs.file-check.outputs.run == 'true'
651
- uses: actions/download-artifact@v4
650
+ uses: actions/download-artifact@v3
651
with:
652
name: final-artifacts
653
path: artifacts
@@ -712,7 +711,7 @@ jobs:
711
- name: Fetch artifacts
712
id: fetch-artifacts
713
if: needs.file-check.outputs.run == 'true'
715
- uses: actions/download-artifact@v4
714
+ uses: actions/download-artifact@v3
715
with:
716
name: final-artifacts
717
path: artifacts
@@ -761,7 +760,7 @@ jobs:
760
steps:
761
- name: Retrieve Artifacts
762
id: fetch
764
- uses: actions/download-artifact@v4
763
+ uses: actions/download-artifact@v3
764
with:
765
name: final-artifacts
766
path: final-artifacts
@@ -826,7 +825,7 @@ jobs:
825
token: ${{ secrets.NETDATABOT_GITHUB_TOKEN }}
826
- name: Retrieve Artifacts
827
id: fetch
829
- uses: actions/download-artifact@v4
828
+ uses: actions/download-artifact@v3
829
with:
830
name: final-artifacts
831
path: final-artifacts
@@ -940,7 +939,7 @@ jobs:
939
uses: actions/checkout@v4
940
- name: Retrieve Artifacts
941
id: fetch
943
- uses: actions/download-artifact@v4
942
+ uses: actions/download-artifact@v3
943
with:
944
name: final-artifacts
945
path: final-artifacts
.github/workflows/packaging.yml
+1
-1
@@ -238,7 +238,7 @@ jobs:
238
id: artifacts
239
if: needs.file-check.outputs.run == 'true'
240
continue-on-error: true
241
- uses: actions/upload-artifact@v4
241
+ uses: actions/upload-artifact@v3
242
with:
243
name: ${{ matrix.distro }}-${{ matrix.version }}-${{ matrix.arch }}-packages
244
path: ${{ github.workspace }}/artifacts/*