-
-
Notifications
You must be signed in to change notification settings - Fork 0
build: update all dependencies #24
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: main
Are you sure you want to change the base?
Changes from all commits
b7e7b40
22b068e
b2fb7a8
0e1d9d1
0b0b608
7044cbb
0cece5e
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 |
|---|---|---|
|
|
@@ -18,6 +18,9 @@ jobs: | |
|
|
||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - uses: actions/setup-node@v4 | ||
| with: | ||
| node-version: 22 | ||
|
|
||
| - uses: oven-sh/setup-bun@v2 | ||
| with: | ||
|
|
@@ -52,6 +55,9 @@ jobs: | |
|
|
||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - uses: actions/setup-node@v4 | ||
| with: | ||
| node-version: 22 | ||
|
Comment on lines
+58
to
+60
|
||
|
|
||
| - uses: oven-sh/setup-bun@v2 | ||
| with: | ||
|
|
||
Large diffs are not rendered by default.
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.
actions/setup-nodepins Node 22 here, but the repo declares Node >=24 (package.json engines) and .nvmrc is 24.11.1. To keep CI consistent with the supported runtime, set this to Node 24 (ideally vianode-version-file: .nvmrc).