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"