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.
1 parent af66999 commit b08b433Copy full SHA for b08b433
.github/workflows/maven-publish.yml
@@ -49,6 +49,17 @@ jobs:
49
# -Dsonar.host.url=https://sonarcloud.io
50
# -Dsonar.login=${{ secrets.SONAR_TOKEN }}
51
52
+ - name: Install TruffleHog CLI
53
+ run: |
54
+ wget https://github.com/trufflesecurity/trufflehog/releases/download/v3.90.11/trufflehog_3.90.11_linux_amd64.tar.gz -O trufflehog.tar.gz
55
+ tar -xvf trufflehog.tar.gz
56
+ chmod +x trufflehog
57
+ mkdir -p ~/.local/bin
58
+ mv trufflehog ~/.local/bin/
59
+
60
+ - name: Add TruffleHog to PATH
61
+ run: echo "$HOME/.local/bin" >> $GITHUB_PATH
62
63
- name: Run TruffleHog Secret Scan
64
run: |
65
echo "Running TruffleHog secret scan..."
0 commit comments