Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,13 @@ jobs:
steps:
- uses: actions/setup-node@v4
with:
node-version: '20.x'
node-version: '24.x'
registry-url: 'https://registry.npmjs.org'
- name: Upgrade npm for trusted publishing
# Trusted publishing (OIDC) requires npm >= 11.5.1, newer than the
# version bundled with Node 20.
run: npm install -g npm@latest
# Trusted publishing (OIDC) requires npm >= 11.5.1. Pin to the 11.x
# line: npm@latest is now 12.x, which requires a newer Node than the
# runner provides (EBADENGINE).
run: npm install -g npm@11
shell: bash
- name: Download npm package
uses: actions/download-artifact@v4
Expand Down
Loading