Skip to content

Commit 8836bd8

Browse files
authoredMay 30, 2022
create sast-scan
1 parent 54aa31c commit 8836bd8

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed
 

‎.github/workflows/sast-scan.yml

+14
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)
Please sign in to comment.