| # This workflow uses actions that are not certified by GitHub. |
| # They are provided by a third-party and are governed by |
| # separate terms of service, privacy policy, and support |
| # documentation. |
| |
| name: flawfinder |
| |
| permissions: |
| contents: read |
| |
| on: |
| push: |
| branches: [ "develop" ] |
| pull_request: |
| # The branches below must be a subset of the branches above |
| branches: [ "develop" ] |
| schedule: |
| - cron: '41 14 * * 3' |
| |
| jobs: |
| flawfinder: |
| name: Flawfinder |
| runs-on: ubuntu-latest |
| permissions: |
| actions: read |
| contents: read |
| security-events: write |
| steps: |
| - name: Harden Runner |
| uses: step-security/harden-runner@05e31511f85b41b11d1cf0ef85d0992719546e2c # v2.21.0 |
| with: |
| egress-policy: audit |
| |
| - name: Checkout code |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 |
| with: |
| persist-credentials: false |
| |
| - name: flawfinder_scan |
| uses: david-a-wheeler/flawfinder@c4216b74cf2639ffa98503768bd6e4299b5440c9 # v2.0.20 |
| with: |
| arguments: '--sarif ./' |
| output: 'flawfinder_results.sarif' |
| |
| - name: Upload analysis results to GitHub Security tab |
| uses: github/codeql-action/upload-sarif@ff2f1c621b7f889edc0d3c761ac2e6a3f8cdb0dd # v4.37.7 |
| with: |
| sarif_file: ${{github.workspace}}/flawfinder_results.sarif |