We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6bedc5a commit 33aba22Copy full SHA for 33aba22
1 file changed
.github/workflows/devsecops-pipeline.yml
@@ -28,10 +28,15 @@ jobs:
28
run: mkdir -p ./docs/reports
29
30
- name: TruffleHog OSS
31
- uses: trufflesecurity/trufflehog@v3.63.7
+ uses: trufflesecurity/trufflehog@main
32
with:
33
- path: ./
34
- extra_args: --debug --json
+ extra_args: --debug --json
+
35
+ # Generate TruffleHog report in docs/reports
36
+ - name: Generate TruffleHog report
37
+ run: |
38
+ echo "Running TruffleHog scan manually to save report"
39
+ docker run --rm -v $(pwd):/pwd trufflesecurity/trufflehog:latest github --repo file:///pwd --json > ./docs/reports/trufflehog-results.json || true
40
41
# Upload TruffleHog results as artifact
42
- name: Upload TruffleHog results
0 commit comments