Skip to content

Commit e49bbe3

Browse files
authoredMay 5, 2024··
🔒 Update action to use Node 20 (#379)
Closes #390
1 parent 9c29c6f commit e49bbe3

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed
 

‎action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ outputs:
9999
description: 'The unique deployment url on Vercel'
100100

101101
runs:
102-
using: 'node16'
102+
using: 'node20'
103103
main: 'dist/index.js'
104104

105105
branding:

‎package-lock.json

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+3
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,8 @@
3333
"@betahuhn/config": "^1.2.0",
3434
"@vercel/ncc": "^0.36.1",
3535
"eslint": "^7.32.0"
36+
},
37+
"engines": {
38+
"node": "20"
3639
}
3740
}

‎src/config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -153,4 +153,4 @@ core.debug(
153153
)
154154
)
155155

156-
module.exports = context
156+
module.exports = context

0 commit comments

Comments
 (0)
Please sign in to comment.