From 104a5e071e06b556dd1150456cfc532d75bbe941 Mon Sep 17 00:00:00 2001 From: en-jschuetze <126695184+en-jschuetze@users.noreply.github.com> Date: Mon, 17 Feb 2025 21:06:46 +0100 Subject: [PATCH] actions/download-artifact@v4 --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9f00b05..926aed1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,7 +32,7 @@ jobs: - name: "Export image" run: mv dockercache amdcache - name: 'Upload Artifact' - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: amdcache path: amdcache @@ -63,7 +63,7 @@ jobs: - name: "Export image" run: mv dockercache armcache - name: 'Upload Artifact' - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: armcache path: armcache @@ -85,13 +85,13 @@ jobs: uses: actions/checkout@v3 - name: Download amd64 - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: amdcache path: amdcache - name: Download arm64 - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: armcache path: armcache