We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0848646 commit 33a6d26Copy full SHA for 33a6d26
.github/workflows/secrets_scanner.yaml
@@ -0,0 +1,19 @@
1
+name: Leaked Secrets Scan
2
+on:
3
+ pull_request:
4
+ merge_group:
5
+jobs:
6
+ TruffleHog:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - name: Checkout code
10
+ uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
11
+ with:
12
+ fetch-depth: 0
13
+ - name: TruffleHog OSS
14
+ uses: trufflesecurity/trufflehog@a94d152bf65bebf5baa486d3d4dfee520af2ceed # v3.88.2
15
16
+ path: ./
17
+ base: ${{ github.event.repository.default_branch }}
18
+ head: HEAD
19
+ extra_args: --debug --only-verified
0 commit comments