From b57cceffe83d670c1869952e3ffa39dcc1859330 Mon Sep 17 00:00:00 2001 From: Carson <104383295+codebycarson@users.noreply.github.com> Date: Thu, 12 Feb 2026 08:44:51 -0500 Subject: [PATCH] Pin Node.js 24 in release workflow Replace node-version-file: '.nvmrc' with an explicit node-version: '24' in the release GitHub Actions workflow and rename the step to 'Setup Node.js (for npm OIDC publishing)'. This ensures the workflow uses Node 24 for npm OIDC publishing rather than relying on the repo's .nvmrc. --- .github/workflows/release.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4e0e0a1c..5022e7bf 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,10 +22,11 @@ jobs: with: fetch-depth: 0 submodules: recursive - - name: Setup Node.js + + - name: Setup Node.js (for npm OIDC publishing) uses: actions/setup-node@v4 with: - node-version-file: '.nvmrc' + node-version: '24' registry-url: 'https://registry.npmjs.org' - name: Install pnpm