-
Notifications
You must be signed in to change notification settings - Fork 0
chore: fix dependabot alerts #21
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
9a7164d
7a8c5f4
6e39ce4
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 | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -10,14 +10,14 @@ on: | |||||||||||||
| jobs: | ||||||||||||||
| release: | ||||||||||||||
| name: Release | ||||||||||||||
| runs-on: ubuntu-18.04 | ||||||||||||||
| runs-on: ubuntu-latest | ||||||||||||||
| steps: | ||||||||||||||
| - name: Checkout | ||||||||||||||
| uses: actions/checkout@v1 | ||||||||||||||
| - name: Setup Node.js | ||||||||||||||
| uses: actions/setup-node@v1 | ||||||||||||||
|
Comment on lines
16
to
18
|
||||||||||||||
| uses: actions/checkout@v1 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v1 | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -15,7 +15,7 @@ jobs: | |
|
|
||
| strategy: | ||
| matrix: | ||
| node-version: [15.x] | ||
| node-version: [20.x] | ||
| # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ | ||
|
|
||
|
Comment on lines
16
to
20
|
||
| steps: | ||
|
|
||
| Original file line number | Diff line number | Diff line change | ||
|---|---|---|---|---|
| @@ -0,0 +1 @@ | ||||
| legacy-peer-deps=true | ||||
|
||||
| legacy-peer-deps=true |
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-node@v1is deprecated and runs on a retired Node runtime. With this workflow moving to Node 20, upgrade to the current major of setup-node (and consider bumping checkout as well) to avoid the action being disabled and breaking the benchmark workflow.