Merge pull request #52 from peter-evans/update-dependencies

Update dependencies
This commit is contained in:
Peter Evans 2021-09-02 13:55:29 +09:00 committed by GitHub
commit ec57f928ad
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 7357 additions and 1522 deletions

48
dist/index.js vendored
View file

@ -217,7 +217,7 @@ function run() {
return __awaiter(this, void 0, void 0, function* () { return __awaiter(this, void 0, void 0, function* () {
try { try {
const inputs = inputHelper.getInputs(); const inputs = inputHelper.getInputs();
core.debug(`Inputs: ${util_1.inspect(inputs)}`); core.debug(`Inputs: ${(0, util_1.inspect)(inputs)}`);
inputHelper.validateInputs(inputs); inputHelper.validateInputs(inputs);
// Fetch the readme content // Fetch the readme content
const readmeContent = yield fs.promises.readFile(inputs.readmeFilepath, { const readmeContent = yield fs.promises.readFile(inputs.readmeFilepath, {
@ -236,7 +236,7 @@ function run() {
core.info('Request successful'); core.info('Request successful');
} }
catch (error) { catch (error) {
core.debug(util_1.inspect(error)); core.debug((0, util_1.inspect)(error));
core.setFailed(error.message); core.setFailed(error.message);
} }
}); });
@ -379,7 +379,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
}); });
}; };
Object.defineProperty(exports, "__esModule", ({ value: true })); Object.defineProperty(exports, "__esModule", ({ value: true }));
exports.getState = exports.saveState = exports.group = exports.endGroup = exports.startGroup = exports.info = exports.warning = exports.error = exports.debug = exports.isDebug = exports.setFailed = exports.setCommandEcho = exports.setOutput = exports.getBooleanInput = exports.getMultilineInput = exports.getInput = exports.addPath = exports.setSecret = exports.exportVariable = exports.ExitCode = void 0; exports.getState = exports.saveState = exports.group = exports.endGroup = exports.startGroup = exports.info = exports.notice = exports.warning = exports.error = exports.debug = exports.isDebug = exports.setFailed = exports.setCommandEcho = exports.setOutput = exports.getBooleanInput = exports.getMultilineInput = exports.getInput = exports.addPath = exports.setSecret = exports.exportVariable = exports.ExitCode = void 0;
const command_1 = __nccwpck_require__(351); const command_1 = __nccwpck_require__(351);
const file_command_1 = __nccwpck_require__(717); const file_command_1 = __nccwpck_require__(717);
const utils_1 = __nccwpck_require__(278); const utils_1 = __nccwpck_require__(278);
@ -557,19 +557,30 @@ exports.debug = debug;
/** /**
* Adds an error issue * Adds an error issue
* @param message error issue message. Errors will be converted to string via toString() * @param message error issue message. Errors will be converted to string via toString()
* @param properties optional properties to add to the annotation.
*/ */
function error(message) { function error(message, properties = {}) {
command_1.issue('error', message instanceof Error ? message.toString() : message); command_1.issueCommand('error', utils_1.toCommandProperties(properties), message instanceof Error ? message.toString() : message);
} }
exports.error = error; exports.error = error;
/** /**
* Adds an warning issue * Adds a warning issue
* @param message warning issue message. Errors will be converted to string via toString() * @param message warning issue message. Errors will be converted to string via toString()
* @param properties optional properties to add to the annotation.
*/ */
function warning(message) { function warning(message, properties = {}) {
command_1.issue('warning', message instanceof Error ? message.toString() : message); command_1.issueCommand('warning', utils_1.toCommandProperties(properties), message instanceof Error ? message.toString() : message);
} }
exports.warning = warning; exports.warning = warning;
/**
* Adds a notice issue
* @param message notice issue message. Errors will be converted to string via toString()
* @param properties optional properties to add to the annotation.
*/
function notice(message, properties = {}) {
command_1.issueCommand('notice', utils_1.toCommandProperties(properties), message instanceof Error ? message.toString() : message);
}
exports.notice = notice;
/** /**
* Writes info to log with console.log. * Writes info to log with console.log.
* @param message info message * @param message info message
@ -703,7 +714,7 @@ exports.issueCommand = issueCommand;
// We use any as a valid input type // We use any as a valid input type
/* eslint-disable @typescript-eslint/no-explicit-any */ /* eslint-disable @typescript-eslint/no-explicit-any */
Object.defineProperty(exports, "__esModule", ({ value: true })); Object.defineProperty(exports, "__esModule", ({ value: true }));
exports.toCommandValue = void 0; exports.toCommandProperties = exports.toCommandValue = void 0;
/** /**
* Sanitizes an input into a string so it can be passed into issueCommand safely * Sanitizes an input into a string so it can be passed into issueCommand safely
* @param input input to sanitize into a string * @param input input to sanitize into a string
@ -718,6 +729,25 @@ function toCommandValue(input) {
return JSON.stringify(input); return JSON.stringify(input);
} }
exports.toCommandValue = toCommandValue; exports.toCommandValue = toCommandValue;
/**
*
* @param annotationProperties
* @returns The command properties to send with the actual annotation command
* See IssueCommandProperties: https://github.com/actions/runner/blob/main/src/Runner.Worker/ActionCommandManager.cs#L646
*/
function toCommandProperties(annotationProperties) {
if (!Object.keys(annotationProperties).length) {
return {};
}
return {
title: annotationProperties.title,
line: annotationProperties.startLine,
endLine: annotationProperties.endLine,
col: annotationProperties.startColumn,
endColumn: annotationProperties.endColumn
};
}
exports.toCommandProperties = toCommandProperties;
//# sourceMappingURL=utils.js.map //# sourceMappingURL=utils.js.map
/***/ }), /***/ }),

8805
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -27,22 +27,22 @@
}, },
"homepage": "https://github.com/peter-evans/dockerhub-description#readme", "homepage": "https://github.com/peter-evans/dockerhub-description#readme",
"dependencies": { "dependencies": {
"@actions/core": "1.4.0", "@actions/core": "1.5.0",
"node-fetch": "2.6.1" "node-fetch": "^2.6.1"
}, },
"devDependencies": { "devDependencies": {
"@types/jest": "26.0.24", "@types/jest": "27.0.1",
"@types/node": "16.4.0", "@types/node": "16.7.10",
"@typescript-eslint/parser": "4.28.4", "@typescript-eslint/parser": "4.30.0",
"@vercel/ncc": "0.29.0", "@vercel/ncc": "0.30.0",
"eslint": "7.31.0", "eslint": "7.32.0",
"eslint-plugin-github": "4.1.5", "eslint-plugin-github": "4.2.0",
"eslint-plugin-jest": "24.4.0", "eslint-plugin-jest": "24.4.0",
"jest": "27.0.6", "jest": "27.1.0",
"jest-circus": "27.0.6", "jest-circus": "27.1.0",
"js-yaml": "4.1.0", "js-yaml": "4.1.0",
"prettier": "2.3.2", "prettier": "2.3.2",
"ts-jest": "27.0.4", "ts-jest": "27.0.5",
"typescript": "4.3.5" "typescript": "4.4.2"
} }
} }

View file

@ -39,7 +39,7 @@ async function run(): Promise<void> {
readmeContent readmeContent
) )
core.info('Request successful') core.info('Request successful')
} catch (error) { } catch (error: any) {
core.debug(inspect(error)) core.debug(inspect(error))
core.setFailed(error.message) core.setFailed(error.message)
} }