Skip to content

Commit bfb8fef

Browse files
Adityav369Security Automation
andauthored
Add gitleaks secret scanning for SOC2/HIPAA compliance (#10)
Co-authored-by: Security Automation <security@morphik.org>
1 parent 949e5da commit bfb8fef

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

.github/workflows/gitleaks.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: gitleaks
2+
on: [pull_request, push, workflow_dispatch]
3+
jobs:
4+
scan:
5+
name: gitleaks
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@v4
9+
with:
10+
fetch-depth: 0
11+
- uses: gitleaks/gitleaks-action@v2
12+
env:
13+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)