File tree Expand file tree Collapse file tree 2 files changed +33
-0
lines changed
Expand file tree Collapse file tree 2 files changed +33
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Security Scan (PRs from forks)
2+
3+ on :
4+ pull_request :
5+ branches : [ main ]
6+
7+ permissions :
8+ contents : read
9+ actions : read
10+
11+ jobs :
12+ analyze :
13+ runs-on : ubuntu-latest
14+ steps :
15+ - uses : actions/checkout@v4
16+ with :
17+ ref : ${{ github.event.pull_request.head.sha }}
18+
19+ - name : Run CodeQL (no upload)
20+ uses : braintree/security-workflows/.github/workflows/codeql-android.yml@main
21+ with :
22+ upload-results : false # disable upload in fork
23+
24+ - name : Run Dependency Review (no write)
25+ uses : braintree/security-workflows/.github/workflows/dependency-review-gradle.yml@main
26+ with :
27+ report-only : true
28+
29+ - name : Upload SARIF as artifact
30+ uses : actions/upload-artifact@v4
31+ with :
32+ name : pr-sarif
33+ path : ./sarif/
You can’t perform that action at this time.
0 commit comments