aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/codeql-analysis.yml
blob: a3a8d54d2daa96d1b598e53f991ef13945eb629d (plain) (blame)
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
32
33
34
35
36
37
38
39
40
41
42
# Copyright (c) 2022 Yubico AB. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
# SPDX-License-Identifier: BSD-2-Clause

name: "codeql"

on:
  pull_request:
    branches:
    - main
  push:
    branches:
    - main
    - '*-ci'
  schedule:
    - cron: '0 0 * * 0'

permissions:
  security-events: write

jobs:
  codeql-build:
    if: github.repository == 'Yubico/libfido2'
    runs-on: ubuntu-22.04
    steps:
    - name: checkout
      uses: actions/checkout@v4
      with:
        fetch-depth: 2
    - name: init codeql
      uses: github/codeql-action/init@v2
    - name: build
      env:
        CC: gcc
      run: |
        sudo apt -q update
        sudo apt install -q -y libcbor-dev libudev-dev libz-dev original-awk \
         libpcsclite-dev
        ./.actions/build-linux-gcc
    - name: perform codeql analysis
      uses: github/codeql-action/analyze@v2