From b4474bdfdf7b30e722eae16fedfdd3e79278c318 Mon Sep 17 00:00:00 2001 From: Gerwin Klein Date: Fri, 31 Jan 2025 09:13:33 +1100 Subject: [PATCH 1/2] github: fix typo Signed-off-by: Gerwin Klein --- .github/workflows/rump-deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/rump-deploy.yml b/.github/workflows/rump-deploy.yml index 02c153e..33dcf67 100644 --- a/.github/workflows/rump-deploy.yml +++ b/.github/workflows/rump-deploy.yml @@ -15,7 +15,7 @@ on: # allow manual trigger workflow_dispatch: - # allow explict trigger from other repos when dependencies have changed + # allow explicit trigger from other repos when dependencies have changed repository_dispatch: types: [deps-update] From 5a3f35e622ec4c5e5a07353e9a68aa0cbb771cc8 Mon Sep 17 00:00:00 2001 From: Gerwin Klein Date: Fri, 31 Jan 2025 09:13:48 +1100 Subject: [PATCH 2/2] 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'