Skip to content

Commit 47626ba

Browse files
Add files via upload
1 parent a81818e commit 47626ba

File tree

4 files changed

+57
-0
lines changed

4 files changed

+57
-0
lines changed

.github/workflows/sast-scan.yml

Lines changed: 14 additions & 0 deletions
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)

.github/workflows/sca-monitor.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Source Composition Analysis Monitor
2+
on: push
3+
jobs:
4+
security:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@master
8+
- name: Run Snyk to check for vulnerabilities
9+
uses: snyk/actions/node@master
10+
env:
11+
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
12+
with:
13+
command: monitor

.github/workflows/sca-scan.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Source Composition Analysis Scan
2+
on:
3+
push:
4+
branches:
5+
- master
6+
pull_request:
7+
types: [opened, synchronize, reopened]
8+
jobs:
9+
security:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@master
13+
- name: Run Snyk to check for vulnerabilities
14+
uses: snyk/actions/node@master
15+
env:
16+
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}

.github/workflows/secrets-scan.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Secrets 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: Gittyleaks
14+
uses: gupy-io/[email protected]

0 commit comments

Comments
 (0)