diff --git a/dist/index.js b/dist/index.js index bb659e2..53ed551 100644 --- a/dist/index.js +++ b/dist/index.js @@ -2834,6 +2834,14 @@ exports.setOutput = function setOutput (key, value) { } +/***/ }), + +/***/ 396: +/***/ ((module) => { + +module.exports = eval("require")("@actions/core"); + + /***/ }), /***/ 491: @@ -2950,6 +2958,7 @@ var __webpack_exports__ = {}; // This entry need to be wrapped in an IIFE because it need to be isolated against other modules in the chunk. (() => { const io = __nccwpck_require__(351) +const core = __nccwpck_require__(396) const semver = __nccwpck_require__(911) const { easyExec, setOutput } = __nccwpck_require__(608) const { generateChangeRanges } = __nccwpck_require__(77) diff --git a/src/main.js b/src/main.js index 312c3c5..b477228 100644 --- a/src/main.js +++ b/src/main.js @@ -1,4 +1,5 @@ const io = require('@actions/io') +const core = require('@actions/core') const semver = require('semver') const { easyExec, setOutput } = require('./utils') const { generateChangeRanges } = require('./git_utils')