We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 94c11ba + a9be38a commit 930b24dCopy full SHA for 930b24d
1 file changed
.github/workflows/main.yml
@@ -15,6 +15,21 @@ on:
15
workflow_dispatch:
16
17
jobs:
18
+ gitleaks:
19
+ name: Secret Scanner
20
+ runs-on: ubuntu-latest
21
+ steps:
22
+ - name: Checkout code
23
+ uses: actions/checkout@v6
24
+ with:
25
+ fetch-depth: 0 # Gitleaks needs the full history to scan properly
26
+
27
+ - name: Run Gitleaks
28
+ uses: gitleaks/gitleaks-action@v3
29
+ env:
30
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
31
+ GITLEAKS_LICENSE: ${{ secrets.GITLEAKS_LICENSE }}
32
33
test:
34
runs-on: ubuntu-latest
35
0 commit comments