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 4d9eef0 + c07aceb commit 0f2a5b8Copy full SHA for 0f2a5b8
1 file changed
.github/workflows/main.yml
@@ -9,6 +9,21 @@ on:
9
- main
10
11
jobs:
12
+ gitleaks:
13
+ name: Secret Scanner
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - name: Checkout code
17
+ uses: actions/checkout@v6
18
+ with:
19
+ fetch-depth: 0 # Gitleaks needs the full history to scan properly
20
+
21
+ - name: Run Gitleaks
22
+ uses: gitleaks/gitleaks-action@v3
23
+ env:
24
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
25
+ GITLEAKS_LICENSE: ${{ secrets.GITLEAKS_LICENSE }}
26
27
test:
28
runs-on: ubuntu-latest
29
0 commit comments