Update to node16

This commit is contained in:
garronej 2022-10-11 16:10:23 +02:00
parent 1b498f1789
commit c9d3057053
4 changed files with 6580 additions and 3076 deletions

View file

@ -80,5 +80,5 @@ outputs:
is_release_beta: is_release_beta:
description: 'Output of is_package_json_version_upgraded, true|false' description: 'Output of is_package_json_version_upgraded, true|false'
runs: runs:
using: 'node12' using: 'node16'
main: 'dist/index.js' main: 'dist/index.js'

7992
dist/index.js vendored

File diff suppressed because one or more lines are too long

1486
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -27,7 +27,7 @@ fs.writeFileSync(
` description: '${getOutputDescription(outputName).replace(/'/g,"''")}'` ` description: '${getOutputDescription(outputName).replace(/'/g,"''")}'`
].join("\n")), ].join("\n")),
`runs:`, `runs:`,
` using: 'node12'`, ` using: 'node16'`,
` main: 'dist/index.js'` ` main: 'dist/index.js'`
].join("\n"), "utf8") ].join("\n"), "utf8")
); );