summaryrefslogtreecommitdiff
path: root/.github/workflows/codeql.yml
blob: 3f878bc8a1cea1b6a99a36e370a5dacff1165cce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name: "Perform CodeQL Analysis"

on:
  push:
    branches:
      - rolling
    paths:
      - '**'
      - '!.github/**'
      - '!**/*.md'
  pull_request:
    branches:
      - rolling
    paths:
      - '**'
      - '!.github/**'
      - '!**/*.md'
  schedule:
    - cron: '28 13 * * 0'

permissions:
  actions: read
  contents: read
  security-events: write

jobs:
  codeql-analysis-call:
    uses: vyos/.github/.github/workflows/codeql-analysis.yml@production
    with:
      languages: "['c-cpp']"
      build-mode: "none"