From 0bbebd63dde282c31fb96305d2b5268737b78ec2 Mon Sep 17 00:00:00 2001 From: Sebastien Date: Tue, 9 Jun 2026 11:00:48 +0200 Subject: [PATCH] ci(release): bump action-gh-release to v3 and make attestation non-blocking action-gh-release@v3 runs on Node 24 (GitHub deprecates Node 20 actions on 2026-06-16). Mark the attestation step continue-on-error so a Sigstore Rekor timeout can no longer skip publishing the release. --- .github/workflows/release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7910073..33197be 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -116,6 +116,7 @@ jobs: - name: Generate artifact attestations uses: actions/attest-build-provenance@v3 + continue-on-error: true with: subject-path: | dist/main.js @@ -123,7 +124,7 @@ jobs: dist/styles.css - name: Create GitHub Release - uses: softprops/action-gh-release@v2 + uses: softprops/action-gh-release@v3 with: tag_name: ${{ steps.version.outputs.tag }} name: ${{ steps.version.outputs.version }}