Skip to content

Commit 5a9cdb5

Browse files
[skip ci] Add security code scanning workflow
1 parent 57b5dfe commit 5a9cdb5

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: "Security Static Analysis"
2+
3+
on:
4+
pull_request: {}
5+
workflow_dispatch: {}
6+
push:
7+
branches:
8+
- main
9+
- master
10+
schedule:
11+
- cron: '48 0 2 * *'
12+
jobs:
13+
scan:
14+
name: "Security Static Analysis"
15+
runs-on: ubuntu-latest
16+
17+
# Skip any PR created by dependabot:
18+
if: (github.actor != 'dependabot[bot]')
19+
20+
steps:
21+
- uses: scout24/s24-sast-action@v2
22+
with:
23+
SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN }}
24+

0 commit comments

Comments
 (0)