Disable scanning of Actions in CodeQL workflow#3819
Merged
cheenamalhotra merged 3 commits intomainfrom Dec 3, 2025
Merged
Conversation
Commented out the scanning of Actions in CodeQL workflow.
Contributor
There was a problem hiding this comment.
Pull request overview
This PR adds a new CodeQL Advanced workflow for automated security scanning of the repository. The workflow is configured to run on pushes to main, pull requests, and on a weekly schedule, focusing on C# code analysis while disabling GitHub Actions scanning.
Key Changes
- Adds CodeQL workflow file with C# language scanning enabled
- Disables Actions language scanning (commented out) due to recurring failures
- Configures workflow to run on push, pull requests, and weekly schedule (Saturday at 11:33 PM)
You can also share your feedback on Copilot code review for a chance to win a $100 gift card. Take the survey.
Updated CodeQL workflow to use manual build mode for C# and added .NET Core SDK setup step.
Create a packages directory before building the project.
Contributor
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 1 out of 1 changed files in this pull request and generated 2 comments.
You can also share your feedback on Copilot code review for a chance to win a $100 gift card. Take the survey.
paulmedynski
added a commit
that referenced
this pull request
Dec 4, 2025
mdaigle
pushed a commit
that referenced
this pull request
Dec 4, 2025
mdaigle
pushed a commit
that referenced
this pull request
Dec 9, 2025
* Fix xevent test failures, avoid orphaned sessions (#3775) * Fix xevent test failures, avoid orphaned sessions (#3775) - Added IsNotManagedInstance() for XEvents tests. * Disable scanning of Actions in CodeQL workflow (#3819) * - Updated CodeQL workflow config to be specific to the release/6.1 branch.
mdaigle
added a commit
that referenced
this pull request
Dec 9, 2025
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
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description.
This PR creates a CodeQL config file that GitHub will use to perform scans. It disables scanning of Actions since those always fail. We leave C# scanning active.