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.
2 parents 77835a3 + b1e2574 commit 1e38e38Copy full SHA for 1e38e38
1 file changed
.github/workflows/main.yml
@@ -14,6 +14,21 @@ on:
14
workflow_dispatch:
15
16
jobs:
17
+ gitleaks:
18
+ name: Secret Scanner
19
+ runs-on: ubuntu-latest
20
+ steps:
21
+ - name: Checkout code
22
+ uses: actions/checkout@v6
23
+ with:
24
+ fetch-depth: 0 # Gitleaks needs the full history to scan properly
25
+
26
+ - name: Run Gitleaks
27
+ uses: gitleaks/gitleaks-action@v3
28
+ env:
29
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
30
+ GITLEAKS_LICENSE: ${{ secrets.GITLEAKS_LICENSE }}
31
32
test:
33
strategy:
34
matrix:
0 commit comments