From 0b711e1cd1031ab614253373e40e1819dcd74cad Mon Sep 17 00:00:00 2001 From: MrDynamo Date: Tue, 21 May 2024 18:48:30 -0500 Subject: [PATCH] =?UTF-8?q?ci(build-image):=20=F0=9F=A7=AA=20drop=20downlo?= =?UTF-8?q?ad/upload=20artifact=20version?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit v4 upload-artifact no longer allows multiple artifacts with the same name --- .github/workflows/master-beta-ci.yml | 4 ++-- .github/workflows/nightly-ci.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/master-beta-ci.yml b/.github/workflows/master-beta-ci.yml index 4af4665c..ac1ed525 100644 --- a/.github/workflows/master-beta-ci.yml +++ b/.github/workflows/master-beta-ci.yml @@ -109,7 +109,7 @@ jobs: # Upload the digest as an artifact - name: Upload digest - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: digests_ghcr path: /tmp/digests/* @@ -144,7 +144,7 @@ jobs: # Download the digests from the artifacts - name: Download digests - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v3 with: name: digests_ghcr path: /tmp/digests diff --git a/.github/workflows/nightly-ci.yml b/.github/workflows/nightly-ci.yml index c0379c64..ca57d279 100644 --- a/.github/workflows/nightly-ci.yml +++ b/.github/workflows/nightly-ci.yml @@ -108,7 +108,7 @@ jobs: # Upload the digest to the artifacts - name: Upload digest - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: digests_ghcr path: /tmp/digests/* @@ -141,7 +141,7 @@ jobs: # Download the digests from the artifacts - name: Download digests - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v3 with: name: digests_ghcr path: /tmp/digests