Merge pull request #760 from baywet/patch-3

fixes #759
This commit is contained in:
Nick Alteen
2023-09-11 15:30:59 -04:00
committed by GitHub
4 changed files with 4 additions and 4 deletions

View File

@ -34,7 +34,7 @@ need to perform some initial setup steps before you can develop your action.
> [`nodenv`](https://github.com/nodenv/nodenv) or
> [`nvm`](https://github.com/nvm-sh/nvm), you can run `nodenv install` in the
> root of your repository to install the version specified in
> [`package.json`](./package.json). Otherwise, 16.x or later should work!
> [`package.json`](./package.json). Otherwise, 20.x or later should work!
1. :hammer_and_wrench: Install the dependencies

View File

@ -15,5 +15,5 @@ outputs:
description: 'Your output description here'
runs:
using: node16
using: node20
main: dist/index.js

2
package-lock.json generated
View File

@ -31,7 +31,7 @@
"typescript": "^5.2.2"
},
"engines": {
"node": ">=16"
"node": ">=20"
}
},
"node_modules/@aashutoshrathi/word-wrap": {

View File

@ -21,7 +21,7 @@
".": "./dist/index.js"
},
"engines": {
"node": ">=16"
"node": ">=20"
},
"scripts": {
"bundle": "npm run format:write && npm run package",