-
Notifications
You must be signed in to change notification settings - Fork 316
Disable scanning of Actions in CodeQL workflow #3819
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Commented out the scanning of Actions in CodeQL workflow.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks ok for now
cheenamalhotra
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🎉
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.