Update codeql.yml with extended query pack #3694
Merged
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 pull request primarily focuses on refining the CodeQL scanning process in the
.github/workflows/codeql.yml
file. The changes include specifying the branches for the push trigger, ignoring certain file paths for pull requests, introducing a matrix strategy for languages, and updating the CodeQL initialization parameters.Here are the key changes:
Changes to triggers:
.github/workflows/codeql.yml
: Thepush
trigger now only applies to themain
branch, and thepull_request
trigger now ignores changes to.md
,.json
, and.http
files.Introduction of matrix strategy:
.github/workflows/codeql.yml
: A matrix strategy was introduced underjobs:
to run CodeQL scans for bothcsharp
andjavascript
languages.Updates to CodeQL initialization:
.github/workflows/codeql.yml
: The CodeQL initialization parameters were updated to use the language from the matrix strategy and to include specific queries and query filters.Testing
Builds successful
FHIR Team Checklist
Semver Change (docs)
Patch