chore(deps): update grafana/tempo docker tag to v3 (#2156) #37
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
| --- | |
| name: CodeQL Security Analysis | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| schedule: | |
| - cron: "29 13 * * 2" # Weekly Tuesday 13:29 UTC | |
| permissions: {} | |
| jobs: | |
| analyze: | |
| name: Analyze Java | |
| runs-on: ubuntu-24.04 | |
| permissions: | |
| actions: read # required for github/codeql-action/init to get workflow details | |
| contents: read | |
| security-events: write # required for github/codeql-action/analyze to upload SARIF | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| with: | |
| persist-credentials: false | |
| - name: Set up Java | |
| uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5 | |
| with: | |
| distribution: temurin | |
| java-version: "25" | |
| - name: Cache Maven repository | |
| uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 | |
| with: | |
| path: ~/.m2/repository | |
| key: ${{ runner.os }}-maven-codeql-${{ hashFiles('**/pom.xml') }} | |
| restore-keys: | | |
| ${{ runner.os }}-maven-codeql- | |
| ${{ runner.os }}-maven- | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@7211b7c8077ea37d8641b6271f6a365a22a5fbfa # v4.36.0 | |
| with: | |
| languages: java | |
| tools: linked | |
| queries: security-extended | |
| # Do not use autobuild — the multi-module Maven structure requires explicit | |
| # build invocation so that CodeQL can trace the compilation correctly. | |
| # Do not use mise-action here — CodeQL needs to trace the raw Maven build. | |
| - name: Build (CodeQL traces the build) | |
| run: > | |
| ./mvnw clean compile | |
| -DskipTests | |
| -Dcoverage.skip=true | |
| -Dcheckstyle.skip=true | |
| -Djavadoc.skip=true | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@7211b7c8077ea37d8641b6271f6a365a22a5fbfa # v4.36.0 | |
| with: | |
| category: /language:java |