Skip to content

ci(deps): bump actions/setup-python from 5 to 6 #3122

ci(deps): bump actions/setup-python from 5 to 6

ci(deps): bump actions/setup-python from 5 to 6 #3122

name: CodeQL Analysis
on:
push:
branches: ["main", "master"]
pull_request:
branches: ["main", "master"]
schedule:
- cron: '0 3 * * 1'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
actions: read
contents: read
security-events: write
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
language: ['python']
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Initialize CodeQL
uses: github/codeql-action/init@v4
with:
languages: ${{ matrix.language }}
config-file: ./.codeql/codeql-config.yml
- name: Autobuild
uses: github/codeql-action/autobuild@v4
- name: Perform CodeQL Analysis
id: analyze
uses: github/codeql-action/analyze@v4
with:
category: "/language:${{ matrix.language }}"
output: codeql-sarif
- name: Upload CodeQL results artifact
uses: actions/upload-artifact@v5
with:
name: codeql-${{ matrix.language }}-results
path: codeql-sarif
if-no-files-found: error