From 0ca79ee7b9b86c8a730937ca111b76f728d1ddc6 Mon Sep 17 00:00:00 2001 From: "Greg A. Woods" Date: Mon, 15 Apr 2024 05:08:16 -0700 Subject: [PATCH] Remove flawfinder.yml. It's too pedantic and difficult to work with --- .github/workflows/flawfinder.yml | 36 -------------------------------- 1 file changed, 36 deletions(-) delete mode 100644 .github/workflows/flawfinder.yml diff --git a/.github/workflows/flawfinder.yml b/.github/workflows/flawfinder.yml deleted file mode 100644 index 7f61d8c..0000000 --- a/.github/workflows/flawfinder.yml +++ /dev/null @@ -1,36 +0,0 @@ -# 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 - -on: - push: - branches: [ "bsdmake" ] - pull_request: - # The branches below must be a subset of the branches above - branches: [ "bsdmake" ] - -jobs: - flawfinder: - name: Flawfinder - runs-on: ubuntu-latest - permissions: - actions: read - contents: read - security-events: write - steps: - - name: Checkout code - uses: actions/checkout@v3 - - - name: flawfinder_scan - 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