mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-12-27 05:24:43 -05:00
Configure CodeQL and scorecard workflow. (#986)
* Configure CodeQL and scorecard workflow. * Fix CodeQL finding. Signed-off-by: Fabian Kammel <fk@edgeless.systems>
This commit is contained in:
parent
5ee69d2647
commit
8f88129cac
4 changed files with 107 additions and 4 deletions
59
.github/workflows/codeql.yml
vendored
Normal file
59
.github/workflows/codeql.yml
vendored
Normal file
|
|
@ -0,0 +1,59 @@
|
|||
name: CodeQL
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
- release/v*
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
codeql:
|
||||
name: CodeQL
|
||||
runs-on: ubuntu-22.04
|
||||
permissions:
|
||||
actions: read
|
||||
contents: read
|
||||
security-events: write
|
||||
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
language: ["go", "python"]
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0
|
||||
|
||||
- name: Setup Go environment
|
||||
if: ${{ matrix.language == 'go' }}
|
||||
uses: actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568 # v3.5.0
|
||||
with:
|
||||
go-version: "1.19.5"
|
||||
|
||||
- name: Initialize CodeQL
|
||||
uses: github/codeql-action/init@515828d97454b8354517688ddc5b48402b723750 # v2.1.38
|
||||
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
|
||||
(cd "$mod" || exit; go mod tidy)
|
||||
done
|
||||
echo "::endgroup::"
|
||||
|
||||
- name: Autobuild
|
||||
uses: github/codeql-action/autobuild@515828d97454b8354517688ddc5b48402b723750 # v2.1.38
|
||||
|
||||
- name: Perform CodeQL Analysis
|
||||
uses: github/codeql-action/analyze@515828d97454b8354517688ddc5b48402b723750 # v2.1.38
|
||||
with:
|
||||
category: "/language:${{ matrix.language }}"
|
||||
Loading…
Add table
Add a link
Reference in a new issue