From d0fffc36d4b6410d58cf8c1719bcaa37e04fc502 Mon Sep 17 00:00:00 2001 From: Antonio Aloisio Date: Mon, 18 Nov 2024 00:11:17 +0100 Subject: [PATCH] ci: fix: updated upload and download artifact to v4 --- .github/workflows/github-actions.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/github-actions.yml b/.github/workflows/github-actions.yml index 960c6160839..2796c0cec06 100644 --- a/.github/workflows/github-actions.yml +++ b/.github/workflows/github-actions.yml @@ -156,10 +156,11 @@ jobs: fi - name: "Archive artifacts" if: matrix.cfg.skip == false - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: release-${{ matrix.cfg.model }}-${{ matrix.cfg.ui }} path: "/project/artifacts" + continue-on-error: true release-job: name: Publish needs: build-job @@ -167,7 +168,7 @@ jobs: if: startsWith(github.event.ref, 'refs/tags/') steps: - name: Download packages - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 - name: Get release version run: | echo "version=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV @@ -200,7 +201,7 @@ jobs: git config --global user.name "Circle CI BOT" git config --global push.default simple - name: Download packages - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 - name: "Publish Manifest" env: UPDATE_DIR: "updates"