Add CodeQL static analysis workflow (java-kotlin) - #22
Merged
Conversation
Repo is public and the app handles inbound network protocols (passive UDP listener for VBridger, WebSocket auth token for VTube Studio) -- worth a proper security scan on top of the existing build+test CI. Runs on push/PR to main and weekly, manual build-mode (matches ci.yml's own model-download step, autobuild doesn't handle this Gradle setup well). Results surface in Security > Code scanning, not in this workflow's own logs.
First run failed ("could not process any code written in Java/Kotlin")
-- the build-and-test job had already populated the Gradle build
cache for this commit, so compileDebugKotlin came back UP-TO-DATE and
CodeQL never traced an actual compiler invocation. --no-build-cache
(plus clean) forces a real compile for the tracer to observe.
guyiome
force-pushed
the
add-codeql-workflow
branch
from
August 20, 2026 16:44
98320f7 to
4243fd2
Compare
|
You are seeing this message because GitHub Code Scanning has recently been set up for this repository, or this pull request contains the workflow file for the Code Scanning tool. What Enabling Code Scanning Means:
For more information about GitHub Code Scanning, check out the documentation. |
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.
Summary
java-kotlin) en plus du build+test existant.mainet une fois par semaine.build-mode: manual, mêmes étapes de préparation queci.yml(JDK 17, modèle MediaPipe).Motivation
Repo public depuis le 15/08, app qui gère des protocoles réseau entrants (écoute UDP passive pour VBridger, token d'auth WebSocket pour VTube Studio) — un scan de sécurité statique en plus du CI actuel est justifié.
Test plan