Conversation
security-extended carries no rule scored below medium and no note-level rule across the four analysed languages, so the low and note tiers of Code scanning stayed empty by construction. The quality packs add the maintainability and reliability queries that fill them.
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.
Switches the CodeQL workflow from
security-extendedtosecurity-and-quality.Why
The Security tab has never shown a
lowornotealert, and it never could: across the four analysed languages thesecurity-extendedsuite as run on master carries 309 rules — 57 critical, 152 high, 78 medium, 22 without a score — and none scored below 4.0 (thelowthreshold), and no note-level rule at all (those are the quality queries). Checked against the 2026-09-18 master SARIFs of all four languages; the alert history (384 dismissed, 35 fixed) has no low/note entry either.security-and-qualityissecurity-extendedplus the maintainability and reliability packs, which is where the note/warning quality rules live.What to expect
The first run on master will add a few hundred quality alerts on Java (unused code, boxed types,
equalswithouthashCode, missing@Override, and the like) — allwarning/note, no security severity. They will be triaged as a separate pass; nothing in this PR changes the security queries or their results.Verification
The workflow parses;
queriesresolves tosecurity-and-quality. The PR's own CodeQL run is the first execution of the new suite.