From 809640aa5ad31cd94a6eb68b93483fcd777c9313 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Peter=20=C5=A0tibran=C3=BD?= Date: Mon, 8 Jan 2024 13:18:18 +0100 Subject: [PATCH] Use upload-artifact@v4 as well. Upload/download versions must match. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Peter Štibraný --- .github/workflows/test-build-deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-build-deploy.yml b/.github/workflows/test-build-deploy.yml index a15324b90bb..e900297b8ec 100644 --- a/.github/workflows/test-build-deploy.yml +++ b/.github/workflows/test-build-deploy.yml @@ -270,7 +270,7 @@ jobs: run: | tar cvf images.tar /tmp/images - name: Upload Archive with Docker Images - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: Docker Images path: ./images.tar @@ -281,7 +281,7 @@ jobs: make BUILD_IN_CONTAINER=false cmd/mimir/.uptodate_race docker save $MIMIR_IMAGE -o ./mimir_race_image - name: Upload archive with race-enabled Mimir - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: Race-enabled Mimir path: ./mimir_race_image