feat: update node version on runner to 20

BREAKING CHANGE: set the default node version to 20
This commit is contained in:
Johan Enell 2023-08-15 15:31:16 +00:00
parent 7f0c0e4904
commit 0c2055456e
8 changed files with 4653 additions and 2589 deletions

View file

@ -47,6 +47,7 @@ exports.handleBranchesOption = () => {
*/
exports.handleDryRunOption = () => {
const dryRun = core.getInput(inputs.dry_run);
core.debug(`dryRun input: ${dryRun}`);
switch (dryRun) {
case 'true':
@ -66,6 +67,7 @@ exports.handleDryRunOption = () => {
*/
exports.handleCiOption = () => {
const ci = core.getInput(inputs.ci);
core.debug(`ci input: ${ci}`);
switch (ci) {
case 'true':
@ -85,6 +87,7 @@ exports.handleCiOption = () => {
*/
exports.handleExtends = () => {
const extend = core.getInput(inputs.extends);
core.debug(`extend input: ${extend}`);
if (extend) {
const extendModuleNames = extend.split(/\r?\n/)
@ -103,6 +106,7 @@ exports.handleExtends = () => {
*/
exports.handleTagFormat = () => {
const tagFormat = core.getInput(inputs.tag_format);
core.debug(`citagFormat input: ${tagFormat}`);
if (tagFormat) {
return {