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
6 changes: 4 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,11 @@ jobs:
# npm trusted publishing requires npm 11.5.1+ (Node 22.14.0+)
node-version: '24'
registry-url: 'https://registry.npmjs.org'
# Ensure npm 11.5.1 or later is installed
# Ensure npm 11.5.1 or later is installed.
# Pinned to the 11.x line: npm 12.0.0 ships without the bundled `sigstore`
# module, which breaks provenance publishing (npm/cli#9722).
- name: Update npm
run: npm install -g npm@latest
run: npm install -g npm@11
- name: Setup bun
uses: oven-sh/setup-bun@v2
with:
Expand Down
Loading