11
0
Fork 0
mirror of https://github.com/cycjimmy/semantic-release-action.git synced 2026-04-21 11:00:16 +00:00

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

@ -26,8 +26,8 @@ const release = async () => {
await preInstall(core.getInput(inputs.extra_plugins));
await preInstall(core.getInput(inputs.extends));
const semanticRelease = require('semantic-release');
const result = await semanticRelease({
const semanticRelease = await import('semantic-release');
const result = await semanticRelease.default({
...handleBranchesOption(),
...handleDryRunOption(),
...handleCiOption(),