mirror of
https://github.com/github/codeql-action.git
synced 2026-05-07 14:20:19 +00:00
Fix linitng issues.
This commit is contained in:
Generated
+3
-1
@@ -93637,7 +93637,9 @@ async function setupDiffInformedQueryRun(logger) {
|
||||
);
|
||||
return void 0;
|
||||
}
|
||||
const fileCount = new Set(diffRanges.filter((r) => r.path).map((r) => r.path)).size;
|
||||
const fileCount = new Set(
|
||||
diffRanges.filter((r) => r.path).map((r) => r.path)
|
||||
).size;
|
||||
logger.info(
|
||||
`Using precomputed diff ranges (${diffRanges.length} ranges across ${fileCount} files).`
|
||||
);
|
||||
|
||||
Generated
+5
-1
@@ -90986,7 +90986,11 @@ async function run() {
|
||||
logger
|
||||
});
|
||||
await checkInstallPython311(config.languages, codeql);
|
||||
prDiffChangedFiles = await computeAndPersistDiffRanges(codeql, features, logger);
|
||||
prDiffChangedFiles = await computeAndPersistDiffRanges(
|
||||
codeql,
|
||||
features,
|
||||
logger
|
||||
);
|
||||
} catch (unwrappedError) {
|
||||
const error2 = wrapError(unwrappedError);
|
||||
core13.setFailed(error2.message);
|
||||
|
||||
Reference in New Issue
Block a user