We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55abd3d commit ecbdde0Copy full SHA for ecbdde0
1 file changed
.github/workflows/trufflehog.yml
@@ -0,0 +1,25 @@
1
+name: TruffleHog Secret Scan
2
+
3
+on:
4
+ push: # Run on every commit
5
+ branches: # Tracks all branches
6
+ - '**'
7
+ pull_request: # Run on every PR
8
+ branches:
9
10
+ workflow_dispatch: # Allows manual execution
11
12
+jobs:
13
+ secret_scan:
14
+ name: Secret Scanning
15
+ runs-on: ubuntu-latest
16
17
+ steps:
18
+ - name: Checkout Repository
19
+ uses: actions/checkout@v4 # Updated to latest version
20
21
+ - name: Install TruffleHog
22
+ run: pip install trufflehog
23
24
+ - name: Run TruffleHog
25
+ run: trufflehog filesystem --no-entropy . || true
0 commit comments