From 02cd05ef49b012563f400e4d75e9ea48303f5a2b Mon Sep 17 00:00:00 2001 From: chris lee Date: Thu, 9 Jul 2026 12:14:09 -0400 Subject: [PATCH 1/2] Bump node-version to 24.x in release workflow Using 24.x (the upcoming LTS) instead of 'latest' which resolved to Node 26 and broke npm publish due to a missing sigstore module. Co-authored-by: Cursor --- .github/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index c92553e4..0a43bac2 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -35,7 +35,7 @@ jobs: - name: Set up Node.js uses: actions/setup-node@v6 with: - node-version: 'latest' +node-version: '24.x' registry-url: 'https://registry.npmjs.org' - name: Ensure latest npm (>= 11.5.1 for OIDC) From 21952e1e21291781c3c78f6f5b533f4ecf55bae7 Mon Sep 17 00:00:00 2001 From: chris lee Date: Thu, 9 Jul 2026 12:18:13 -0400 Subject: [PATCH 2/2] fix indent --- .github/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 0a43bac2..f8baf9eb 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -35,7 +35,7 @@ jobs: - name: Set up Node.js uses: actions/setup-node@v6 with: -node-version: '24.x' + node-version: '24.x' registry-url: 'https://registry.npmjs.org' - name: Ensure latest npm (>= 11.5.1 for OIDC)