Skip to content

Commit ac34a61

Browse files
committed
fix: Use Node v24 for trusted publish step
1 parent fc2ce27 commit ac34a61

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

.github/actions/setup/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ runs:
2020
using: composite
2121
steps:
2222
- name: Setup Node.js
23-
uses: actions/setup-node@v4
23+
uses: actions/setup-node@v6
2424
if: inputs.install_dependencies == 'true'
2525
with:
2626
cache: npm
2727
node-version: ${{ inputs.node_version }}
2828
registry-url: ${{ inputs.registry_url }}
2929
- name: Setup Node.js without cache
30-
uses: actions/setup-node@v4
30+
uses: actions/setup-node@v6
3131
if: inputs.install_dependencies == 'false'
3232
with:
3333
node-version: ${{ inputs.node_version }}

.github/workflows/_publish.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ jobs:
2828
- name: Setup
2929
uses: ./.github/actions/setup
3030
with:
31+
node_version: '24'
3132
install_dependencies: 'false'
3233
- name: Download artifact
3334
uses: actions/download-artifact@v6

0 commit comments

Comments
 (0)