[bot] Update dist directory

This commit is contained in:
bigdaz
2024-04-12 16:35:47 +00:00
committed by github-actions[bot]
parent 6d55902761
commit 6cec5d49d4
10 changed files with 60770 additions and 13 deletions

View File

@@ -144934,9 +144934,9 @@ function getDeprecations() {
return recordedDeprecations;
}
exports.getDeprecations = getDeprecations;
function emitDeprecationWarnings() {
function emitDeprecationWarnings(hasJobSummary = true) {
if (recordedDeprecations.length > 0) {
core.warning(`This job uses deprecated functionality from the '${(0, configuration_1.getActionId)()}' action. Consult the Job Summary for more details.`);
core.warning(`This job uses deprecated functionality from the '${(0, configuration_1.getActionId)()}' action. Consult the ${hasJobSummary ? 'Job Summary' : 'logs'} for more details.`);
for (const deprecation of recordedDeprecations) {
core.info(`DEPRECATION: ${deprecation.message}. See ${deprecation.getDocumentationLink()}`);
}