mirror of
https://github.com/github/codeql-action.git
synced 2026-01-03 13:10:06 +08:00
Do not try merging a single SARIF file
This commit is contained in:
@@ -93,6 +93,10 @@ async function combineSarifFilesUsingCLI(
|
||||
features: Features,
|
||||
logger: Logger,
|
||||
): Promise<SarifFile> {
|
||||
if (sarifFiles.length === 1) {
|
||||
return JSON.parse(fs.readFileSync(sarifFiles[0], "utf8")) as SarifFile;
|
||||
}
|
||||
|
||||
if (!areAllRunsProducedByCodeQL(sarifFiles)) {
|
||||
logger.warning(
|
||||
"Not all SARIF files were produced by CodeQL. Merging files in the action.",
|
||||
|
||||
Reference in New Issue
Block a user