We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34fed86 commit 8d0bfa4Copy full SHA for 8d0bfa4
1 file changed
.github/workflows/snyk-security.yml
@@ -54,7 +54,7 @@ jobs:
54
# Runs Snyk Code (SAST) analysis and uploads result into GitHub.
55
# Use || true to not fail the pipeline
56
- name: Snyk Code test
57
- run: snyk code test --sarif > snyk-code.sarif # || true
+ run: snyk code test --sarif > snyk-code.sarif || true
58
59
# Runs Snyk Open Source (SCA) analysis and uploads result to Snyk.
60
- name: Snyk Open Source monitor
@@ -63,7 +63,7 @@ jobs:
63
# Runs Snyk Infrastructure as Code (IaC) analysis and uploads result to Snyk.
64
# Use || true to not fail the pipeline.
65
- name: Snyk IaC test and report
66
- run: snyk iac test --report # || true
+ run: snyk iac test --report || true
67
68
# Build the docker image for testing
69
- name: Build a Docker image
0 commit comments