File tree Expand file tree Collapse file tree 2 files changed +34
-1
lines changed
Expand file tree Collapse file tree 2 files changed +34
-1
lines changed Original file line number Diff line number Diff line change 1+ name : flawfinder
2+
3+ on :
4+ push :
5+ branches : [ master ]
6+ pull_request :
7+ # The branches below must be a subset of the branches above
8+ branches : [ master ]
9+ schedule :
10+ - cron : ' 44 0 * * 4'
11+
12+ jobs :
13+ flawfinder :
14+ name : Flawfinder
15+ runs-on : ubuntu-latest
16+ permissions :
17+ actions : read
18+ contents : read
19+ security-events : write
20+ steps :
21+ - name : Checkout code
22+ uses : actions/checkout@v2
23+
24+ - name : flawfinder_scan
25+ uses : david-a-wheeler/flawfinder@8e4a779ad59dbfaee5da586aa9210853b701959c
26+ with :
27+ arguments : ' --sarif ./'
28+ output : ' flawfinder_results.sarif'
29+
30+ - name : Upload analysis results to GitHub Security tab
31+ uses : github/codeql-action/upload-sarif@v1
32+ with :
33+ sarif_file : ${{github.workspace}}/flawfinder_results.sarif
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ distributions:
5858
5959* `CentOS 7 <docs/build/building_on_centos_7.md >`__
6060* `Fedora 34 </docs/build/building_on_fedora_34.md >`__
61- * `Ubuntu 20.04 </docs/build/building_on_ubuntu_20_04.md >`__ (this should work as well for Debian 10 and later )
61+ * `Ubuntu 20.04 </docs/build/building_on_ubuntu_20_04.md >`__ (this should work as well for Debian 10)
6262
6363Configuration
6464-------------
You can’t perform that action at this time.
0 commit comments