| # 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 Advanced' |
| |
| on: |
| push: |
| branches: ['**'] |
| pull_request: |
| branches: ['main'] |
| schedule: |
| - cron: '40 11 * * 4' |
| |
| concurrency: |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} |
| cancel-in-progress: true |
| |
| env: |
| CODEQL_TELEMETRY_STATUS: false |
| |
| jobs: |
| analyze: |
| name: Analyze (${{ matrix.language }}) |
| runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }} |
| permissions: |
| security-events: write |
| packages: read |
| actions: read |
| contents: read |
| |
| strategy: |
| fail-fast: false |
| matrix: |
| include: |
| - language: actions |
| build-mode: none |
| - language: python |
| build-mode: none |
| steps: |
| - name: Checkout repository |
| uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 |
| |
| - name: Initialize CodeQL |
| uses: github/codeql-action/init@8aad20d150bbac5944a9f9d289da16a4b0d87c1e # v4.36.2 |
| with: |
| languages: ${{ matrix.language }} |
| build-mode: ${{ matrix.build-mode }} |
| |
| - name: Run manual build steps |
| if: matrix.build-mode == 'manual' |
| shell: bash |
| run: | |
| echo 'If you are using a "manual" build mode for one or more of the' \ |
| 'languages you are analyzing, replace this with the commands to build' \ |
| 'your code, for example:' |
| echo ' make bootstrap' |
| echo ' make release' |
| exit 1 |
| |
| - name: Perform CodeQL Analysis |
| uses: github/codeql-action/analyze@8aad20d150bbac5944a9f9d289da16a4b0d87c1e # v4.36.2 |
| with: |
| category: '/language:${{matrix.language}}' |
| # Minimize API usage: only upload SARIF for PRs or the main branch. |
| # Analysis still runs on other branches to catch syntax errors. |
| upload: ${{ github.event_name == 'pull_request' || github.ref == 'refs/heads/main' }} |
| |