We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6267c4f commit 8aac9caCopy full SHA for 8aac9ca
1 file changed
.github/workflows/devsecops-pipeline.yml
@@ -160,12 +160,20 @@ jobs:
160
161
- name: TruffleHog OSS
162
uses: trufflesecurity/trufflehog@main
163
+ continue-on-error: true # Don't fail on first commit
164
with:
165
path: ./
166
base: ${{ github.event.repository.default_branch }}
167
head: HEAD
168
extra_args: --debug --only-verified
169
170
+ - name: TruffleHog Filesystem Scan (fallback for single commits)
171
+ if: failure() # Run if previous step failed
172
+ uses: trufflesecurity/trufflehog@main
173
+ with:
174
+ path: ./
175
+ extra_args: --only-verified
176
+
177
# Stage 8: Docker Build and Push
178
docker-build:
179
name: Docker Build and Push
0 commit comments