Skip to content

Commit

Permalink
Use node 20 not node 21
Browse files Browse the repository at this point in the history
  • Loading branch information
garronej committed May 19, 2024
1 parent b953a0c commit 45686f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,5 +80,5 @@ outputs:
is_pre_release:
description: 'Output of is_package_json_version_upgraded, true|false'
runs:
using: 'node21'
using: 'node20'
main: 'dist/index.js'
2 changes: 1 addition & 1 deletion src/bin/generateActionYml.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ fs.writeFileSync(
` description: '${getOutputDescription(outputName).replace(/'/g,"''")}'`
].join("\n")),
`runs:`,
` using: 'node21'`,
` using: 'node20'`,
` main: 'dist/index.js'`
].join("\n"), "utf8")
);

0 comments on commit 45686f5

Please sign in to comment.