We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57b5dfe commit 5a9cdb5Copy full SHA for 5a9cdb5
.github/workflows/security-analysis.yml
@@ -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