Fix swapped log levels

This commit is contained in:
Michael B. Gale
2025-10-10 14:42:09 +01:00
parent dc2ced8385
commit 4704ab1869
6 changed files with 12 additions and 12 deletions

4
lib/analyze-action.js generated
View File

@@ -92363,11 +92363,11 @@ async function getCodeQLSource(toolsInput, defaultCliVersion, apiDetails, varian
);
} else {
if (allowToolcacheValueFF) {
logger.info(
logger.warning(
`Ignoring 'tools: ${toolsInput}' because the workflow was not triggered dynamically.`
);
} else {
logger.warning(
logger.info(
`Ignoring 'tools: ${toolsInput}' because the feature is not enabled.`
);
}

View File

@@ -130345,11 +130345,11 @@ async function getCodeQLSource(toolsInput, defaultCliVersion, apiDetails, varian
);
} else {
if (allowToolcacheValueFF) {
logger.info(
logger.warning(
`Ignoring 'tools: ${toolsInput}' because the workflow was not triggered dynamically.`
);
} else {
logger.warning(
logger.info(
`Ignoring 'tools: ${toolsInput}' because the feature is not enabled.`
);
}

4
lib/init-action.js generated
View File

@@ -89141,11 +89141,11 @@ async function getCodeQLSource(toolsInput, defaultCliVersion, apiDetails, varian
);
} else {
if (allowToolcacheValueFF) {
logger.info(
logger.warning(
`Ignoring 'tools: ${toolsInput}' because the workflow was not triggered dynamically.`
);
} else {
logger.warning(
logger.info(
`Ignoring 'tools: ${toolsInput}' because the feature is not enabled.`
);
}

4
lib/upload-lib.js generated
View File

@@ -90180,11 +90180,11 @@ async function getCodeQLSource(toolsInput, defaultCliVersion, apiDetails, varian
);
} else {
if (allowToolcacheValueFF) {
logger.info(
logger.warning(
`Ignoring 'tools: ${toolsInput}' because the workflow was not triggered dynamically.`
);
} else {
logger.warning(
logger.info(
`Ignoring 'tools: ${toolsInput}' because the feature is not enabled.`
);
}

View File

@@ -90851,11 +90851,11 @@ async function getCodeQLSource(toolsInput, defaultCliVersion, apiDetails, varian
);
} else {
if (allowToolcacheValueFF) {
logger.info(
logger.warning(
`Ignoring 'tools: ${toolsInput}' because the workflow was not triggered dynamically.`
);
} else {
logger.warning(
logger.info(
`Ignoring 'tools: ${toolsInput}' because the feature is not enabled.`
);
}