We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 005880a commit 46b288cCopy full SHA for 46b288c
.github/workflows/sast-scan.yml
@@ -0,0 +1,14 @@
1
+name: SAST Scan
2
+on:
3
+ push:
4
+ branches:
5
+ - '*'
6
+ pull_request:
7
+ types: [opened, synchronize, reopened]
8
+jobs:
9
+ security:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v2
13
+ - name: Horusec Scan
14
+ run: docker run -v /var/run/docker.sock:/var/run/docker.sock -v $(pwd):/src horuszup/horusec-cli:latest horusec start -p /src -P $(pwd)
0 commit comments