From 2bca0f2bdcb07f9a91ee8a66ab76f69f3b5af5d1 Mon Sep 17 00:00:00 2001 From: Roland Geider Date: Mon, 30 Sep 2024 20:24:45 +0200 Subject: [PATCH] Update upload and download artifact actions --- .github/workflows/docker.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 27c2c31f0..6014453ef 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -85,9 +85,9 @@ jobs: touch "/tmp/digests/${digest#sha256:}" - name: Upload digest - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: - name: digests + name: digests-${{ env.PLATFORM_PAIR }} path: /tmp/digests/* if-no-files-found: error retention-days: 1 @@ -103,10 +103,11 @@ jobs: - build-prod steps: - name: Download digests - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: - name: digests path: /tmp/digests + pattern: digests-* + merge-multiple: true - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3