From 0fb8333db600ccbff92e1b8866fbbb9a96ccb48c Mon Sep 17 00:00:00 2001 From: U9G Date: Thu, 27 Aug 2026 02:08:34 -0400 Subject: [PATCH] Use Node 24 in npm-publish workflow so OIDC trusted publishing works #16 switched to trusted publishing but left node-version at 14.0.0, which ships npm 6 and cannot authenticate via OIDC. Every publish since has failed with a 404 on PUT (1.5.0 was the first version bump to hit it). --- .github/workflows/npm-publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index 00ef856..f217edd 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -18,7 +18,7 @@ jobs: - name: Set up Node.js uses: actions/setup-node@master with: - node-version: 14.0.0 + node-version: 24 registry-url: 'https://registry.npmjs.org' - id: publish uses: JS-DevTools/npm-publish@v4