From 04ee2c3a16f1d249d04d4bbc2f04819f0aeeb829 Mon Sep 17 00:00:00 2001 From: Gerwin Klein Date: Fri, 31 Jan 2025 09:13:48 +1100 Subject: [PATCH] github: switch to upload-artifact v4 v3 is no longer supported Signed-off-by: Gerwin Klein --- .github/workflows/rump-deploy.yml | 4 ++-- .github/workflows/test.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/rump-deploy.yml b/.github/workflows/rump-deploy.yml index 33dcf67..5291821 100644 --- a/.github/workflows/rump-deploy.yml +++ b/.github/workflows/rump-deploy.yml @@ -48,7 +48,7 @@ jobs: req: ${{ matrix.req }} - name: Upload images if: ${{ matrix.req != 'sim' }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: images-${{ matrix.req }} path: '*-images.tar.gz' @@ -72,7 +72,7 @@ jobs: path: machine_queue token: ${{ secrets.PRIV_REPO_TOKEN }} - name: Download image - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: images-${{ matrix.req }} - name: Run diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 431fa63..a4208e0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -24,7 +24,7 @@ jobs: req: ${{ matrix.req }} - name: Upload images if: ${{ matrix.req != 'sim' }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: images-${{ matrix.req }} path: '*-images.tar.gz'