We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b953a0c commit 45686f5Copy full SHA for 45686f5
action.yml
@@ -80,5 +80,5 @@ outputs:
80
is_pre_release:
81
description: 'Output of is_package_json_version_upgraded, true|false'
82
runs:
83
- using: 'node21'
+ using: 'node20'
84
main: 'dist/index.js'
src/bin/generateActionYml.ts
@@ -27,7 +27,7 @@ fs.writeFileSync(
27
` description: '${getOutputDescription(outputName).replace(/'/g,"''")}'`
28
].join("\n")),
29
`runs:`,
30
- ` using: 'node21'`,
+ ` using: 'node20'`,
31
` main: 'dist/index.js'`
32
].join("\n"), "utf8")
33
);
0 commit comments