name: CodeQL on: workflow_dispatch: push: branches: - main - "release/**" paths: - "**.go" - "**/go.mod" - "**/go.sum" - "**.py" - "**requirements.txt" - ".github/workflows/codeql.yml" jobs: codeql: name: CodeQL runs-on: ubuntu-22.04 env: # Force CodeQL to run the extraction on the files compiled by our custom # build command, as opposed to letting the autobuilder figure it out. CODEQL_EXTRACTOR_GO_BUILD_TRACING: 'on' permissions: actions: read contents: read security-events: write strategy: fail-fast: false matrix: language: ["go", "python"] steps: - name: Checkout repository uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 - name: Setup Go environment if: matrix.language == 'go' uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0 with: go-version: "1.20.8" cache: false - name: Initialize CodeQL uses: github/codeql-action/init@a09933a12a80f87b87005513f0abb1494c27a716 # v2.21.4 with: languages: ${{ matrix.language }} - name: Install Go Dependencies if: matrix.language == 'go' run: | echo "::group::Install apt dependencies" sudo apt-get update && sudo apt-get install -y libcryptsetup12 libcryptsetup-dev libvirt-dev echo "::endgroup::" echo "::group::Install go dependencies" mods=$(go list -f '{{.Dir}}' -m | xargs) for mod in $mods; do go mod download -C "$mod" done echo "::endgroup::" - name: Build if: matrix.language == 'python' uses: github/codeql-action/autobuild@a09933a12a80f87b87005513f0abb1494c27a716 # v2.21.4 - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@a09933a12a80f87b87005513f0abb1494c27a716 # v2.21.4 with: category: "/language:${{ matrix.language }}"