Add per-session thread-safety and streaming guard to Session #170
Workflow file for this run
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
| # SPDX-FileCopyrightText: 2026 Bernard Ladenthin <bernard.ladenthin@gmail.com> | |
| # SPDX-FileCopyrightText: 2023-2025 Konstantin Herud | |
| # | |
| # SPDX-License-Identifier: MIT | |
| name: CodeQL | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| schedule: | |
| - cron: "12 1 * * 0" | |
| jobs: | |
| analyze: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| actions: read | |
| contents: read | |
| security-events: write | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-java@v5 | |
| with: { java-version: '21', distribution: temurin } | |
| - uses: github/codeql-action/init@v4 | |
| with: { languages: java, queries: +security-and-quality } | |
| - name: Build with Maven | |
| run: mvn --batch-mode compile | |
| - uses: github/codeql-action/analyze@v4 | |
| with: { category: "/language:java" } |