Skip to content

Commit d9867c1

Browse files
authored
build: add smegrep action to check audit
1 parent e1de034 commit d9867c1

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/audit-check.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,15 @@ jobs:
3333
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
3434
with:
3535
args: --severity-threshold=high
36+
37+
semgrep-scanning:
38+
name: Semgrep Scanning
39+
runs-on: ubuntu-latest
40+
container:
41+
image: semgrep/semgrep
42+
if: (github.actor != 'dependabot[bot]')
43+
steps:
44+
- uses: actions/checkout@v4
45+
- run: semgrep ci
46+
env:
47+
SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN }}

0 commit comments

Comments
 (0)