FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

Skip validating SARIF produced by CodeQL by henrymercer · Pull Request #2894 · github/codeql-action · GitHub

Skip validating SARIF produced by CodeQL - #2894

Merged
henrymercer merged 6 commits into
mainfrom
henrymercer/skip-validating-codeql-sarif
May 14, 2025
Merged

henrymercer merged 6 commits into
mainfrom
henrymercer/skip-validating-codeql-sarif

Conversation

Copy link
Copy Markdown
Contributor

This PR skips validating SARIF files produced by CodeQL, unless we are running in a testing environment. This improves end-to-end performance.

We also only read the SARIF file once in the common case that only one file is being uploaded. Previously we read it twice. This should also speed things up, particularly for large SARIF files.

Merge / deployment checklist

  • Confirm this change is backwards compatible with existing workflows.
  • Confirm the readme has been updated if necessary.
  • Confirm the changelog has been updated if necessary.

henrymercer requested review from Copilot and esbena May 14, 2025 14:15
henrymercer requested a review from a team as a code owner May 14, 2025 14:15

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Choose a reason Spam Abuse Off Topic Outdated Duplicate Resolved Low Quality

Pull Request Overview

This PR improves performance by skipping SARIF schema validation for CodeQL-produced results outside of testing environments and reducing redundant file reads when uploading a single SARIF file.

  • Introduce getTestingEnvironment to centralize test-environment checks.
  • Split validateSarifFileSchema into readSarifFile + validate so a single-file upload is read only once.
  • Update uploadFiles to skip validation for pure CodeQL SARIF in production and streamline multi-/single-file flows.

Reviewed Changes

Copilot reviewed 19 out of 19 changed files in this pull request and generated 3 comments.

Show a summary per file
File Description
src/util.ts Add getTestingEnvironment and refine JSDoc for test-mode logic.
src/workflow.ts Use getTestingEnvironment instead of direct process.env check.
src/upload-lib.ts Extract readSarifFile, update validateSarifFileSchema signature, skip validation by default for CodeQL SARIF.
src/upload-lib.test.ts Update schema tests to use readSarifFile before validation.
src/status-report.ts Use getTestingEnvironment for status payload and export logic.
src/analyze.ts Remove in-place validation in getPerQueryAlertCounts and update its signature.
lib/… Mirror changes in compiled JS for util, workflow, upload-lib, status-report, analyze, and tests.
CHANGELOG.md Document skipping SARIF validation for CodeQL.
Comments suppressed due to low confidence (1)

src/analyze.ts:683

  • Consider updating this JSDoc to reflect that the function no longer performs validation and no longer accepts a logger parameter.
/** Get an object with all queries and their counts parsed from a SARIF file path. */

Comment thread src/upload-lib.ts Outdated
Comment thread lib/upload-lib.js Outdated
Comment thread src/upload-lib.ts
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
henrymercer added the Rebuild Re-transpile JS & re-generate workflows label May 14, 2025
github-actions Bot removed the Rebuild Re-transpile JS & re-generate workflows label May 14, 2025

Copy link
Copy Markdown
Contributor

Pushed a commit to rebuild the Action. Please mark the PR as ready for review to trigger PR checks.

github-actions Bot marked this pull request as draft May 14, 2025 14:23
henrymercer marked this pull request as ready for review May 14, 2025 14:23

oscarsj left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Choose a reason Spam Abuse Off Topic Outdated Duplicate Resolved Low Quality

LGTM!

Comment thread src/util.ts
Comment on lines +767 to +773
export function getTestingEnvironment(): string | undefined {
const testingEnvironment = process.env[EnvVar.TESTING_ENVIRONMENT] || "";
if (testingEnvironment === "") {
return undefined;
}
return testingEnvironment;
}

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Choose a reason Spam Abuse Off Topic Outdated Duplicate Resolved Low Quality

👍🏾

henrymercer merged commit 510dfa3 into main May 14, 2025
henrymercer deleted the henrymercer/skip-validating-codeql-sarif branch May 14, 2025 18:55
github-actions Bot mentioned this pull request May 16, 2025
8 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants


Back | FazBrowse Home | New Git URL