From bbe59a19c5681912280d1d45e6b8ad300e03135d Mon Sep 17 00:00:00 2001 From: Tom Trafford Date: Tue, 22 Oct 2024 11:13:09 +0100 Subject: [PATCH] Update download-artifact to v4 to fix release CI --- .github/workflows/code.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/code.yml b/.github/workflows/code.yml index 2c70119..103ec39 100644 --- a/.github/workflows/code.yml +++ b/.github/workflows/code.yml @@ -62,10 +62,11 @@ jobs: # make a release on every tag if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags') steps: - - uses: actions/download-artifact@v2 + - uses: actions/download-artifact@v4 with: - name: zpkgs path: zpkgs + merge-multiple: true + - name: Github Release # We pin to the SHA, not the tag, for security reasons.