File tree 2 files changed +40
-0
lines changed
2 files changed +40
-0
lines changed Original file line number Diff line number Diff line change
1
+ version : 3
2
+ server : https://app.fossa.com
3
+ project :
4
+ id : " splunk-firehose-nozzle"
5
+ team : " TA-Automation"
Original file line number Diff line number Diff line change 8
8
workflow_dispatch :
9
9
10
10
jobs :
11
+ fossa-scan :
12
+ continue-on-error : true
13
+ runs-on : ubuntu-latest
14
+ steps :
15
+ - uses : actions/checkout@v3
16
+ - name : run fossa anlyze and create report
17
+ run : |
18
+ curl -H 'Cache-Control: no-cache' https://raw.githubusercontent.com/fossas/fossa-cli/master/install-latest.sh | bash
19
+ fossa analyze --include-unused-deps --debug
20
+ fossa report attribution --format text > /tmp/THIRDPARTY
21
+ env :
22
+ FOSSA_API_KEY : ${{ secrets.FOSSA_API_KEY }}
23
+ - name : upload THIRDPARTY file
24
+ uses : actions/upload-artifact@v2
25
+ with :
26
+ name : THIRDPARTY
27
+ path : /tmp/THIRDPARTY
28
+ - name : run fossa test
29
+ run : |
30
+ fossa test --debug
31
+ env :
32
+ FOSSA_API_KEY : ${{ secrets.FOSSA_API_KEY }}
33
+
34
+ semgrep :
35
+ runs-on : ubuntu-latest
36
+ name : security-sast-semgrep
37
+ if : github.actor != 'dependabot[bot]'
38
+ steps :
39
+ - uses : actions/checkout@v3
40
+ - name : Semgrep
41
+ id : semgrep
42
+ uses : returntocorp/semgrep-action@v1
43
+ with :
44
+ publishToken : ${{ secrets.SEMGREP_PUBLISH_TOKEN }}
45
+
11
46
build :
12
47
runs-on : ubuntu-latest
13
48
steps :
You can’t perform that action at this time.
0 commit comments