| # |
| # 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 |
| # |
| # http://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: [ develop ] |
| pull_request: |
| branches: [ develop ] |
| schedule: |
| - cron: '0 1 */3 * *' |
| |
| env: |
| MAVEN_ARGS: -V -B --no-transfer-progress |
| |
| jobs: |
| analyze: |
| name: Analyze |
| runs-on: 'ubuntu-latest' |
| permissions: |
| # required for all workflows |
| security-events: write |
| |
| strategy: |
| fail-fast: false |
| matrix: |
| language: [ 'java' ] |
| javaVersion: [ '17' ] |
| javaDistribution: [ 'zulu' ] |
| |
| steps: |
| - name: Checkout repository |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd #v6.0.2 |
| |
| - name: Set up Java 17-zulu |
| uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 #v5.2.0 |
| with: |
| java-version: ${{ matrix.javaVersion }} |
| distribution: ${{ matrix.javaDistribution }} |
| cache: maven |
| |
| # Initializes the CodeQL tools for scanning. |
| - name: Initialize CodeQL |
| uses: github/codeql-action/init@95e58e9a2cdfd71adc6e0353d5c52f41a045d225 #v4.35.2 |
| with: |
| languages: ${{ matrix.language }} |
| |
| - name: Maven Build |
| run: | |
| ./mvnw compile test-compile pmd:aggregate-pmd -Pci \ |
| -Ddevelocity.cache.local.enabled=false \ |
| -Ddevelocity.cache.remote.enabled=false |
| |
| - name: Perform CodeQL Analysis |
| uses: github/codeql-action/analyze@95e58e9a2cdfd71adc6e0353d5c52f41a045d225 #v4.35.2 |
| with: |
| category: "/language:${{matrix.language}}" |
| |
| - name: Upload PMD Analysis |
| uses: github/codeql-action/upload-sarif@95e58e9a2cdfd71adc6e0353d5c52f41a045d225 #v4.35.2 |
| with: |
| sarif_file: target/pmd.sarif.json |