-
Notifications
You must be signed in to change notification settings - Fork 1
50 lines (41 loc) · 1.37 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
39
40
41
42
43
44
45
46
47
48
49
50
name: Semgrep scan
on:
pull_request:
branches: ["main"]
workflow_dispatch: {}
schedule:
- cron: "0 9 * * 6"
jobs:
semgrep:
runs-on: ubuntu-latest
permissions:
security-events: write
container:
image: returntocorp/semgrep
steps:
- name: Checkout all commits and tags
uses: actions/checkout@v4
if: ${{ github.event_name == 'pull_request' }}
with:
fetch-depth: 0
- name: Checkout single commit
uses: actions/checkout@v4
if: ${{ github.event_name != 'pull_request' }}
- name: Pull request scan
if: ${{ github.event_name == 'pull_request' }}
run: semgrep scan --config=auto --verbose --time --error --baseline-commit ${{ github.event.pull_request.base.sha }}
- name: Full scan
if: ${{ github.event_name != 'pull_request' }}
run: semgrep scan --config=auto --verbose --time --sarif --output report.sarif
- name: Save report as pipeline artifact
if: ${{ github.event_name != 'pull_request' }}
uses: actions/upload-artifact@v3
with:
name: report.sarif
path: report.sarif
- name: Publish code scanning alerts
if: ${{ github.event_name != 'pull_request' }}
uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: report.sarif
category: semgrep