From a926e0482596f1e007065b657d91ba9231a52ba1 Mon Sep 17 00:00:00 2001 From: CrazyMax <1951866+crazy-max@users.noreply.github.com> Date: Tue, 19 Dec 2023 22:29:15 +0100 Subject: [PATCH] bump actions/upload-artifact and actions/download-artifact to 4 --- .github/workflows/build.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index dae2ebae..c30160fc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -120,9 +120,9 @@ jobs: *.cache-to=type=gha,scope=artifact-${{ env.PLATFORM_PAIR }},mode=max - name: Upload artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: - name: diun + name: diun-${{ env.PLATFORM_PAIR }} path: ${{ env.DESTDIR }} if-no-files-found: error @@ -137,10 +137,11 @@ jobs: uses: actions/checkout@v4 - name: Download artifacts - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: - name: diun path: ${{ env.DESTDIR }} + pattern: diun-* + merge-multiple: true - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3