Extract check for combine SARIF files deprecation warning
This commit is contained in:
parent
24acd7711e
commit
a5e49d1544
3 changed files with 20 additions and 15 deletions
12
lib/upload-lib.js
generated
12
lib/upload-lib.js
generated
|
|
@ -109,6 +109,11 @@ function areAllRunsUnique(sarifObjects) {
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
function showCombineSarifFilesDeprecationWarning(sarifObjects) {
|
||||||
|
// Only give a deprecation warning when not all runs are unique
|
||||||
|
return (!areAllRunsUnique(sarifObjects) &&
|
||||||
|
!process.env.CODEQL_MERGE_SARIF_DEPRECATION_WARNING);
|
||||||
|
}
|
||||||
// Takes a list of paths to sarif files and combines them together using the
|
// Takes a list of paths to sarif files and combines them together using the
|
||||||
// CLI `github merge-results` command when all SARIF files are produced by
|
// CLI `github merge-results` command when all SARIF files are produced by
|
||||||
// CodeQL. Otherwise, it will fall back to combining the files in the action.
|
// CodeQL. Otherwise, it will fall back to combining the files in the action.
|
||||||
|
|
@ -123,9 +128,7 @@ async function combineSarifFilesUsingCLI(sarifFiles, gitHubVersion, features, lo
|
||||||
});
|
});
|
||||||
if (!areAllRunsProducedByCodeQL(sarifObjects)) {
|
if (!areAllRunsProducedByCodeQL(sarifObjects)) {
|
||||||
logger.debug("Not all SARIF files were produced by CodeQL. Merging files in the action.");
|
logger.debug("Not all SARIF files were produced by CodeQL. Merging files in the action.");
|
||||||
// Only give a deprecation warning when not all runs are unique
|
if (showCombineSarifFilesDeprecationWarning(sarifObjects)) {
|
||||||
if (!areAllRunsUnique(sarifObjects) &&
|
|
||||||
!process.env.CODEQL_MERGE_SARIF_DEPRECATION_WARNING) {
|
|
||||||
logger.warning("Uploading multiple SARIF runs with the same category is deprecated and will be removed on June 4, 2025. Please update your workflow to upload a single run per category. For more information, see https://github.blog/changelog/2024-05-06-code-scanning-will-stop-combining-runs-deprecation-notice");
|
logger.warning("Uploading multiple SARIF runs with the same category is deprecated and will be removed on June 4, 2025. Please update your workflow to upload a single run per category. For more information, see https://github.blog/changelog/2024-05-06-code-scanning-will-stop-combining-runs-deprecation-notice");
|
||||||
core.exportVariable("CODEQL_MERGE_SARIF_DEPRECATION_WARNING", "true");
|
core.exportVariable("CODEQL_MERGE_SARIF_DEPRECATION_WARNING", "true");
|
||||||
}
|
}
|
||||||
|
|
@ -156,8 +159,7 @@ async function combineSarifFilesUsingCLI(sarifFiles, gitHubVersion, features, lo
|
||||||
}
|
}
|
||||||
if (!(await codeQL.supportsFeature(tools_features_1.ToolsFeature.SarifMergeRunsFromEqualCategory))) {
|
if (!(await codeQL.supportsFeature(tools_features_1.ToolsFeature.SarifMergeRunsFromEqualCategory))) {
|
||||||
logger.warning("The CodeQL CLI does not support merging SARIF files. Merging files in the action.");
|
logger.warning("The CodeQL CLI does not support merging SARIF files. Merging files in the action.");
|
||||||
if (!areAllRunsUnique(sarifObjects) &&
|
if (showCombineSarifFilesDeprecationWarning(sarifObjects)) {
|
||||||
!process.env.CODEQL_MERGE_SARIF_DEPRECATION_WARNING) {
|
|
||||||
logger.warning("Uploading multiple CodeQL runs with the same category is deprecated and will be removed on June 4, 2025. Please update your CodeQL CLI version or update your workflow to set a distinct category for each CodeQL run. For more information, see https://github.blog/changelog/2024-05-06-code-scanning-will-stop-combining-runs-deprecation-notice");
|
logger.warning("Uploading multiple CodeQL runs with the same category is deprecated and will be removed on June 4, 2025. Please update your CodeQL CLI version or update your workflow to set a distinct category for each CodeQL run. For more information, see https://github.blog/changelog/2024-05-06-code-scanning-will-stop-combining-runs-deprecation-notice");
|
||||||
core.exportVariable("CODEQL_MERGE_SARIF_DEPRECATION_WARNING", "true");
|
core.exportVariable("CODEQL_MERGE_SARIF_DEPRECATION_WARNING", "true");
|
||||||
}
|
}
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -120,6 +120,16 @@ function areAllRunsUnique(sarifObjects: SarifFile[]): boolean {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function showCombineSarifFilesDeprecationWarning(
|
||||||
|
sarifObjects: util.SarifFile[],
|
||||||
|
) {
|
||||||
|
// Only give a deprecation warning when not all runs are unique
|
||||||
|
return (
|
||||||
|
!areAllRunsUnique(sarifObjects) &&
|
||||||
|
!process.env.CODEQL_MERGE_SARIF_DEPRECATION_WARNING
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
// Takes a list of paths to sarif files and combines them together using the
|
// Takes a list of paths to sarif files and combines them together using the
|
||||||
// CLI `github merge-results` command when all SARIF files are produced by
|
// CLI `github merge-results` command when all SARIF files are produced by
|
||||||
// CodeQL. Otherwise, it will fall back to combining the files in the action.
|
// CodeQL. Otherwise, it will fall back to combining the files in the action.
|
||||||
|
|
@ -144,11 +154,7 @@ async function combineSarifFilesUsingCLI(
|
||||||
"Not all SARIF files were produced by CodeQL. Merging files in the action.",
|
"Not all SARIF files were produced by CodeQL. Merging files in the action.",
|
||||||
);
|
);
|
||||||
|
|
||||||
// Only give a deprecation warning when not all runs are unique
|
if (showCombineSarifFilesDeprecationWarning(sarifObjects)) {
|
||||||
if (
|
|
||||||
!areAllRunsUnique(sarifObjects) &&
|
|
||||||
!process.env.CODEQL_MERGE_SARIF_DEPRECATION_WARNING
|
|
||||||
) {
|
|
||||||
logger.warning(
|
logger.warning(
|
||||||
"Uploading multiple SARIF runs with the same category is deprecated and will be removed on June 4, 2025. Please update your workflow to upload a single run per category. For more information, see https://github.blog/changelog/2024-05-06-code-scanning-will-stop-combining-runs-deprecation-notice",
|
"Uploading multiple SARIF runs with the same category is deprecated and will be removed on June 4, 2025. Please update your workflow to upload a single run per category. For more information, see https://github.blog/changelog/2024-05-06-code-scanning-will-stop-combining-runs-deprecation-notice",
|
||||||
);
|
);
|
||||||
|
|
@ -205,10 +211,7 @@ async function combineSarifFilesUsingCLI(
|
||||||
"The CodeQL CLI does not support merging SARIF files. Merging files in the action.",
|
"The CodeQL CLI does not support merging SARIF files. Merging files in the action.",
|
||||||
);
|
);
|
||||||
|
|
||||||
if (
|
if (showCombineSarifFilesDeprecationWarning(sarifObjects)) {
|
||||||
!areAllRunsUnique(sarifObjects) &&
|
|
||||||
!process.env.CODEQL_MERGE_SARIF_DEPRECATION_WARNING
|
|
||||||
) {
|
|
||||||
logger.warning(
|
logger.warning(
|
||||||
"Uploading multiple CodeQL runs with the same category is deprecated and will be removed on June 4, 2025. Please update your CodeQL CLI version or update your workflow to set a distinct category for each CodeQL run. For more information, see https://github.blog/changelog/2024-05-06-code-scanning-will-stop-combining-runs-deprecation-notice",
|
"Uploading multiple CodeQL runs with the same category is deprecated and will be removed on June 4, 2025. Please update your CodeQL CLI version or update your workflow to set a distinct category for each CodeQL run. For more information, see https://github.blog/changelog/2024-05-06-code-scanning-will-stop-combining-runs-deprecation-notice",
|
||||||
);
|
);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue