12
0
Fork 0
mirror of https://github.com/cycjimmy/semantic-release-action.git synced 2026-05-15 04:50:33 +00:00

fix regression after actions/core v3.0.0-upgrade, now esm only

This commit is contained in:
Leif Ødegård Uhlen 2026-05-05 10:15:41 +02:00
parent fd0b87f65a
commit a1d9acfe39
6 changed files with 6 additions and 6 deletions

View file

@ -1,4 +1,4 @@
const core = require('@actions/core');
import core from '@actions/core'
const stringToJson = require('@cycjimmy/awesome-js-funcs/cjs/typeConversion/stringToJson.cjs').default;
const inputs = require('./inputs.json');

View file

@ -1,4 +1,4 @@
const core = require('@actions/core');
import core from '@actions/core'
const {
handleBranchesOption,
handleDryRunOption,

View file

@ -1,5 +1,5 @@
const path = require('path');
const core = require('@actions/core');
import core from '@actions/core'
const exec = require('./_exec');
const inputs = require('./inputs.json');

View file

@ -1,5 +1,5 @@
const path = require('path');
const core = require('@actions/core');
import core from '@actions/core'
const exec = require('./_exec');
/**

View file

@ -1,5 +1,5 @@
const path = require('path');
const core = require('@actions/core');
import core from '@actions/core'
const outputs = require('./outputs.json');
/**

View file

@ -1,4 +1,4 @@
const core = require('@actions/core');
import core from '@actions/core'
const outputs = require('./outputs.json');
/**