Skip to content

Commit a0722d3

Browse files
committed
use node.js 20
GitHub has deprecated node.js 16 and requires node Actions to migrate to version 20 by "spring 2024". [1] Update to node.js 20 to avoid deprecation warnings. This fixes #684 [1] https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/ Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 49dc2f1 commit a0722d3

File tree

3 files changed

+25
-9
lines changed

3 files changed

+25
-9
lines changed

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,5 @@ inputs:
3333
description: 'Filter results by the reason for the build; Defaults to "all"'
3434
default: 'all'
3535
runs:
36-
using: 'node16'
36+
using: 'node20'
3737
main: 'dist/index.js'

package-lock.json

Lines changed: 23 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
},
3535
"devDependencies": {
3636
"@types/jest": "^28.1.8",
37-
"@types/node": "^16.11.7 <18.0.0",
37+
"@types/node": "^20.9.0 <22.0.0",
3838
"@types/unzipper": "^0.10.9",
3939
"@typescript-eslint/parser": "^5.62.0",
4040
"@vercel/ncc": "^0.38.1",

0 commit comments

Comments
 (0)