Downgrade log message from warning to debug level

This commit is contained in:
Michael B. Gale
2025-10-27 17:02:01 +00:00
parent 55c083790a
commit 52cec4178d
2 changed files with 2 additions and 2 deletions

2
lib/init-action.js generated
View File

@@ -92218,7 +92218,7 @@ async function checkWorkflow(logger, codeql) {
if (validateWorkflowResult === void 0) {
logger.info("Detected no issues with the code scanning workflow.");
} else {
logger.warning(
logger.debug(
`Unable to validate code scanning workflow: ${validateWorkflowResult}`
);
}

View File

@@ -486,7 +486,7 @@ export async function checkWorkflow(logger: Logger, codeql: CodeQL) {
if (validateWorkflowResult === undefined) {
logger.info("Detected no issues with the code scanning workflow.");
} else {
logger.warning(
logger.debug(
`Unable to validate code scanning workflow: ${validateWorkflowResult}`,
);
}