From 9f8f9dca6681d4e6334897233b91004bb7682844 Mon Sep 17 00:00:00 2001 From: Marcello Date: Thu, 9 Jul 2026 15:25:08 -0400 Subject: [PATCH 1/2] Fix npm publish workflow Node version --- .github/workflows/publish_npm.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/publish_npm.yml b/.github/workflows/publish_npm.yml index 60b5d55..4b8ebaa 100644 --- a/.github/workflows/publish_npm.yml +++ b/.github/workflows/publish_npm.yml @@ -28,11 +28,10 @@ jobs: - name: Setup Node.js and npm uses: actions/setup-node@v4 with: - node-version: 26 + # Use the current LTS release for publishing; Node 26's bundled npm can + # fail to resolve npm's optional sigstore dependency during provenance setup. + node-version: 24 registry-url: https://registry.npmjs.org/ - - name: Update npm - run: npm install -g npm@latest - - name: Publish to NPM run: cd npm && npm publish --access public From 0ca2ba3b434f6b9f9ff150da01bd5d68bd885f2f Mon Sep 17 00:00:00 2001 From: Marcello Date: Thu, 9 Jul 2026 15:28:27 -0400 Subject: [PATCH 2/2] Bump version to 2.4.0 --- deno.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deno.json b/deno.json index 7433c96..363f7f4 100644 --- a/deno.json +++ b/deno.json @@ -1,6 +1,6 @@ { "name": "@bytebury/toolkit", - "version": "2.3.0", + "version": "2.4.0", "exports": { ".": "./mod.ts", "./core": "./src/core.ts",