-
-
Notifications
You must be signed in to change notification settings - Fork 50
chore: revert back to use unified Node and pnpm setup action #151
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
base: master
Are you sure you want to change the base?
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 | ||||
|---|---|---|---|---|---|---|
|
|
@@ -11,18 +11,14 @@ jobs: | |||||
| steps: | ||||||
| - uses: actions/checkout@v4 | ||||||
|
|
||||||
| - uses: pnpm/action-setup@v4.2.0 | ||||||
| - name: Setup Node and pnpm | ||||||
| uses: silverhand-io/actions-node-pnpm-run-steps@v5 | ||||||
| with: | ||||||
| version: 10 | ||||||
|
|
||||||
| - uses: actions/setup-node@v6 | ||||||
| with: | ||||||
| node-version: 22.14.0 | ||||||
| registry-url: https://registry.npmjs.org/ | ||||||
| cache: 'pnpm' | ||||||
| node-version: ^22.14.0 | ||||||
|
||||||
| node-version: ^22.14.0 | |
| node-version: 22.14.0 |
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.
The node version specification has changed from an exact version (22.14.0) to a caret range (^22.14.0). This allows any version 22.x.x >= 22.14.0, which could lead to inconsistent builds across different workflow runs as new Node versions are released. Consider using an exact version for reproducible builds.