-
Notifications
You must be signed in to change notification settings - Fork 1.6k
38 lines (37 loc) · 1.14 KB
/
semgrep.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: Semgrep
permissions: read-all
on:
pull_request: {}
push:
branches: [master, v2.dev, v3.dev]
jobs:
semgrep:
name: Scan
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
container:
# Incompatible with Harden Runner
image: returntocorp/semgrep
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- run: semgrep scan --sarif --output=results.sarif
env:
SEMGREP_RULES: >-
p/java
p/github-actions
p/semgrep-rule-lints
p/semgrep-misconfigurations
- name: Check file existence
id: check_files
uses: andstor/file-existence-action@076e0072799f4942c8bc574a82233e1e4d13e9d6 # v3.0.0
with:
files: results.sarif
- name: Upload SARIF file for GitHub Advanced Security Dashboard
uses: github/codeql-action/upload-sarif@48ab28a6f5dbc2a99bf1e0131198dd8f1df78169 # v3.28.0
if: steps.check_files.outputs.files_exists == 'true'
continue-on-error: true
with:
sarif_file: results.sarif