mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
9cd1184244
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
69 lines
1.9 KiB
YAML
69 lines
1.9 KiB
YAML
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"]
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
|
|
|
- name: Setup Go environment
|
|
if: matrix.language == 'go'
|
|
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
|
|
with:
|
|
go-version: "1.22.4"
|
|
cache: false
|
|
|
|
- name: Initialize CodeQL
|
|
uses: github/codeql-action/init@23acc5c183826b7a8a97bce3cecc52db901f8251 # v3.25.10
|
|
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: Perform CodeQL Analysis
|
|
uses: github/codeql-action/analyze@23acc5c183826b7a8a97bce3cecc52db901f8251 # v3.25.10
|
|
with:
|
|
category: "/language:${{ matrix.language }}"
|