Sync checks.yml so CodeQL analyses this repository's languages - #49
Merged
Conversation
Dependency Review✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.OpenSSF Scorecard
Scanned Files
|
The template now passes `languages: auto` to the CodeQL reusable. Without it the call takes the default `actions` and scans workflow files only — and because GitHub disables code-scanning default setup as soon as an advanced configuration uploads SARIF, the earlier rollout of this file silently switched off the JavaScript analysis that default setup had been doing. `auto` detects rather than assumes: actions always, go on a go.mod or any .go file, javascript-typescript on a package.json or any JS/TS source. Not theoretical — re-enabling it across the fleet tonight immediately surfaced findings that had been invisible: two HIGH js/clear-text-logging in netresearch/t3x-contexts and one MEDIUM js/xss-through-exception in netresearch/t3x-cowriter. The file stays byte-identical to the template. Signed-off-by: Sebastian Mendel <github@sebastianmendel.de>
There was a problem hiding this comment.
Automated approval for maintainer PR
All automated quality gates passed. See SECURITY_CONTROLS.md for compensating controls.
CybotTM
force-pushed
the
ci/sync-template-codeql-auto
branch
from
August 6, 2026 01:20
7eb384e to
dc61456
Compare
|
There was a problem hiding this comment.
Automated approval for maintainer PR
All automated quality gates passed. See SECURITY_CONTROLS.md for compensating controls.
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.



Last of the 24
t3x-*repositories to reach the current org template. Twenty are already on it.What this fixes
The template now passes
languages: autoto the CodeQL reusable. Without it the call takes the input's defaultactionsand scans workflow files only — and because GitHub disables code-scanning default setup the moment an advanced configuration uploads its first SARIF, rolling out the previous revision of this file silently switched off the JavaScript analysis that default setup had been performing.autodetects rather than assumes:actionsalways,goon ago.modor any.gofile,javascript-typescripton apackage.jsonor any JS/TS source. A PHP-only repository therefore getsactionsalone and no pointless empty pass.This is not theoretical
Re-enabling the analysis across the fleet tonight immediately surfaced findings that had been invisible while JavaScript went unscanned:
t3x-contextsjs/clear-text-loggingBuild/playwright/tests/playwright/helper/login.setup.ts:116and:126t3x-cowriterjs/xss-through-exceptionResources/Public/JavaScript/Ckeditor/CowriterDialog.js:941Those are pre-existing defects, not new ones — they were simply unreportable.
Scope
One file,
.github/workflows/checks.yml, byte-identical tonetresearch/.github/templates/typo3-extension/.github/workflows/checks.yml(blob787510c1), verified withcmp. The drift check enforces that byte-identity, so no per-repository variation is possible here.