Add Missing Languages to CodeQL Advanced Configuration#51
Merged
cheshire137 merged 2 commits intoactions:mainfrom Jan 7, 2026
Merged
Add Missing Languages to CodeQL Advanced Configuration#51cheshire137 merged 2 commits intoactions:mainfrom
cheshire137 merged 2 commits intoactions:mainfrom
Conversation
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR adds missing languages to the CodeQL analysis configuration to ensure comprehensive security scanning coverage across the repository. The change extends the existing advanced CodeQL setup to include languages that were previously not being scanned.
- Adds "actions" language to the existing TypeScript configuration in the CodeQL matrix
- Ensures Security Findings compliance by including all repository languages in code scanning
| matrix: | ||
| language: | ||
| - TypeScript | ||
| - TypeScript, actions |
There was a problem hiding this comment.
The matrix language configuration is incorrect. Each language should be a separate list item, not comma-separated values in a single item. This should be two separate entries: '- typescript' and '- javascript' (note: CodeQL uses 'javascript' for both JS and TS, and 'actions' is not a valid CodeQL language).
Suggested change
| - TypeScript, actions | |
| - javascript | |
| - javascript |
cheshire137
approved these changes
Jan 7, 2026
Contributor
cheshire137
left a comment
There was a problem hiding this comment.
Thank you, sorry for the delay on this!
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.
We are working to improve and streamline CodeQL configuration at GitHub. Your repository
This PR adds those languages to your configuration. Merging this PR will ensure code scanning happens in your repo reliably and should eliminate future findings in Security Findings (assuming you update the configuration as contents of your repository changes).
If your repository does not require or benefit from advanced config (e.g. for compiled languages), you can change to default setup in lieu of merging this PR.
If you have concerns or questions about this, please mention @github/prodsec-engineering in this PR or drop in our slack channel with your question.