| # Licensed to the Apache Software Foundation (ASF) under one or more |
| # contributor license agreements. See the NOTICE file distributed with |
| # this work for additional information regarding copyright ownership. |
| # The ASF licenses this file to You under the Apache License, Version 2.0 |
| # (the "License"); you may not use this file except in compliance with |
| # the License. You may obtain a copy of the License at |
| # |
| # https://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| |
| name: "CodeQL" |
| on: |
| push: |
| branches: |
| - main |
| pull_request: |
| branches: |
| - main |
| # queue jobs and only allow 1 run per branch due to the likelihood of hitting GitHub resource limits |
| concurrency: |
| group: ${{ github.workflow }}-${{ github.ref }} |
| cancel-in-progress: ${{ github.event_name == 'pull_request' }} |
| jobs: |
| analyze: |
| name: Analyze |
| runs-on: ubuntu-latest |
| permissions: |
| actions: read |
| contents: read |
| security-events: write |
| strategy: |
| fail-fast: false |
| matrix: |
| # The plugin is Kotlin + Java; the CodeQL 'java' pack covers both JVM languages. |
| language: [ 'java' ] |
| steps: |
| - name: "📥 Checkout repository" |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 |
| - name: "☕️ Setup JDK" |
| uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0 |
| with: |
| distribution: liberica # .sdkmanrc pins librca = Liberica |
| java-version: 25 |
| - name: "🔎 Initialize CodeQL" |
| uses: github/codeql-action/init@e4fba868fa4b1b91e1fdab776edc8cfbe6e9fb81 # v4.37.3 |
| with: |
| languages: ${{ matrix.language }} |
| build-mode: none |
| - name: "🔬 Perform CodeQL Analysis" |
| uses: github/codeql-action/analyze@e4fba868fa4b1b91e1fdab776edc8cfbe6e9fb81 # v4.37.3 |