From 763df7ce0da97948ea309420f8386361a0c0ae84 Mon Sep 17 00:00:00 2001 From: Nick Sheck Date: Thu, 18 May 2023 12:12:19 -0700 Subject: [PATCH] Import core package --- dist/index.js | 9 +++++++++ src/main.js | 1 + 2 files changed, 10 insertions(+) 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')