Skip to content

Change: Use new release workflow and docker base images #343

Change: Use new release workflow and docker base images

Change: Use new release workflow and docker base images #343

Workflow file for this run

name: "CodeQL"
on:
push:
branches: [ main, stable, oldstable ]
pull_request:
branches: [ main, stable, oldstable ]
paths-ignore:
- '**/*.md'
- '**/*.txt'
schedule:
- cron: '30 5 * * 0' # 5:30h on Sundays
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
container: greenbone/gsad-build:unstable
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: C
# build between init and analyze ...
- name: Configure and compile gsad
run: |
mkdir build
rm -rf .git
cd build/
cmake -DCMAKE_BUILD_TYPE=Debug ..
make install
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2