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:
parent
fd0b87f65a
commit
a1d9acfe39
6 changed files with 6 additions and 6 deletions
|
|
@ -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');
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
const core = require('@actions/core');
|
||||
import core from '@actions/core'
|
||||
const {
|
||||
handleBranchesOption,
|
||||
handleDryRunOption,
|
||||
|
|
|
|||
|
|
@ -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');
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
const path = require('path');
|
||||
const core = require('@actions/core');
|
||||
import core from '@actions/core'
|
||||
const exec = require('./_exec');
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
const path = require('path');
|
||||
const core = require('@actions/core');
|
||||
import core from '@actions/core'
|
||||
const outputs = require('./outputs.json');
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
const core = require('@actions/core');
|
||||
import core from '@actions/core'
|
||||
const outputs = require('./outputs.json');
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue