Remove note about separation in actions-util

We could move everything into `util`, but in some ways it is nice having
a file dedicated to Actions related utilities.
This commit is contained in:
Henry Mercer 2022-11-14 18:46:43 +00:00
parent 8c8a9b1231
commit 03bb58c07d
3 changed files with 1 additions and 10 deletions

4
lib/actions-util.js generated
View file

@ -32,10 +32,6 @@ const sharedEnv = __importStar(require("./shared-environment"));
const util_1 = require("./util");
// eslint-disable-next-line import/no-commonjs
const pkg = require("../package.json");
/**
* The utils in this module are meant to be run inside of the action only.
* Code paths from the runner should not enter this module.
*/
/**
* Wrapper around core.getInput for inputs that always have a value.
* Also see getOptionalInput.

File diff suppressed because one or more lines are too long

View file

@ -24,11 +24,6 @@ import {
// eslint-disable-next-line import/no-commonjs
const pkg = require("../package.json");
/**
* The utils in this module are meant to be run inside of the action only.
* Code paths from the runner should not enter this module.
*/
/**
* Wrapper around core.getInput for inputs that always have a value.
* Also see getOptionalInput.