Skip to content

Commit 1225e91

Browse files
committed
Upgrade node version for the release job
1 parent 776b6fd commit 1225e91

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,16 @@ jobs:
3030
- name: Setup node.js
3131
uses: actions/setup-node@v5
3232
with:
33-
node-version: 20
33+
node-version: '24.x'
3434
cache: 'pnpm'
3535
registry-url: 'https://registry.npmjs.org'
3636
always-auth: true # Optional but avoids intermittent ENEEDAUTH issues in pnpm monorepos
3737

38+
- name: Show Node & npm versions
39+
run: |
40+
node -v
41+
npm -v
42+
3843
- name: Install dependencies
3944
run: pnpm install
4045

0 commit comments

Comments
 (0)