From 5a03e36f6e8b290c4c221504a5f9969e0f7cc954 Mon Sep 17 00:00:00 2001 From: Talisson Costa Date: Fri, 6 Feb 2026 10:45:40 -0300 Subject: [PATCH] fix(ci): use Node.js 24 for OIDC trusted publishing support Node.js 22 ships with npm v10 which has a bug with OIDC trusted publishing. Node.js 24 ships with npm v11 which fixes this issue. Co-Authored-By: Claude Opus 4.5 --- .github/workflows/publish-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml index 1f2b4af..40c8a4b 100644 --- a/.github/workflows/publish-release.yml +++ b/.github/workflows/publish-release.yml @@ -60,7 +60,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v4 with: - node-version: '22' + node-version: '24' registry-url: 'https://registry.npmjs.org' cache: 'yarn'