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
10 changes: 4 additions & 6 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,13 @@ jobs:
bun-version: "1.2.21"

- name: Set up Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v5
with:
node-version: '20'
node-version: 24
registry-url: 'https://registry.npmjs.org'

# OIDC trusted publishing requires npm >= 11.5.1; the version
# bundled with Node 20 is older.
- name: Ensure latest npm
run: npm install -g npm@latest
- name: Ensure npm supports trusted publishing
run: npm install -g npm@^11.5.1

- name: Install dependencies
run: bun install --frozen-lockfile
Expand Down
Loading