-
Notifications
You must be signed in to change notification settings - Fork 104
fix(ci): bump CI Node.js to 24 to restore npm 11 trusted publishing #2414
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -51,7 +51,7 @@ jobs: | |
|
|
||
| - uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6 | ||
| with: | ||
| node-version: 22 | ||
| node-version: 24 | ||
|
|
||
| - name: Install dependencies | ||
| run: npm ci | ||
|
|
@@ -239,7 +239,7 @@ jobs: | |
|
|
||
| - uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6 | ||
| with: | ||
| node-version: 22 | ||
| node-version: 24 | ||
|
|
||
| - name: Install dependencies | ||
| run: npm ci | ||
|
|
@@ -385,7 +385,7 @@ jobs: | |
|
|
||
| - uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6 | ||
| with: | ||
| node-version: 22 | ||
| node-version: 24 | ||
|
|
||
| - name: Install dependencies | ||
| run: npm ci | ||
|
|
@@ -450,7 +450,7 @@ jobs: | |
| - name: Setup Node.js | ||
| uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6 | ||
| with: | ||
| node-version: 22 | ||
| node-version: 24 | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks - acknowledged but not making the change.
Pinning only the publish jobs to |
||
| registry-url: 'https://registry.npmjs.org' | ||
|
|
||
| - name: Install dependencies | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks - acknowledged but not making the change.
actions/setup-node@v6withnode-version: 24resolves to the latest 24.x in the GitHub-hosted runner toolcache, which onubuntu-latestis well above 24.10 today. There is no realistic resolution path to an earlier 24.x minor on hosted runners. Node 24.0.0 already shipped with npm 11.3 and 24.10 ships npm 11.5+, so Trusted Publishing is satisfied at the floor regardless.Pinning only the publish jobs to
24.10.xwould also create a drift between the publish toolchain and the build/test toolchain that produces the artifact we publish, which feels worse than the theoretical reproducibility win.