aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/security-checks.yml
blob: 284500e6cdcd57a47ffcfce34147d0f71deb00c4 (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
name: Security Checks

on: [push, pull_request]

jobs:
  flawfinder:
    if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.fork
    name: Flawfinder Checks
    runs-on: ubuntu-latest
    permissions:
      actions: read
      contents: read
      security-events: write
    steps:
      - name: Checkout code
        uses: actions/checkout@v4

      - name: Scan with Flawfinder
        uses: david-a-wheeler/flawfinder@8e4a779ad59dbfaee5da586aa9210853b701959c
        with:
          arguments: '--sarif ./'
          output: 'flawfinder_results.sarif'

      - name: Upload analysis results to GitHub Security tab
        uses: github/codeql-action/upload-sarif@v2
        with:
          sarif_file: ${{github.workspace}}/flawfinder_results.sarif