Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ on:
- "src/**"
- "**/*.go"
- "**/*.rs"
- "**/*.java"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🎯 Functional Correctness | 🟠 Major | ⚡ Quick win

Trigger CodeQL for Kotlin source changes too.

Because the matrix claims Java/Kotlin coverage, add **/*.kt and **/*.kts to both path filters. Otherwise Kotlin-only changes will not run this workflow.

Also applies to: 25-25

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In @.github/workflows/codeql.yml at line 13, Update the CodeQL workflow path
filters to include both Kotlin patterns, **/*.kt and **/*.kts, alongside
**/*.java in each applicable filter. Ensure both filter entries use the same
Java-and-Kotlin coverage so Kotlin-only changes trigger the workflow.

- "**/go.mod"
- "**/go.sum"
- "**/Cargo.toml"
Expand All @@ -21,6 +22,7 @@ on:
- "src/**"
- "**/*.go"
- "**/*.rs"
- "**/*.java"
- "**/go.mod"
- "**/go.sum"
- "**/Cargo.toml"
Expand Down Expand Up @@ -54,6 +56,10 @@ jobs:
build-mode: autobuild
- language: rust
build-mode: none
# Java (CodeQL id java-kotlin) supports buildless extraction, so it
# runs build-mode none like rust: no Bazel/Maven build on PRs.
- language: java-kotlin
build-mode: none
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down
Loading