Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
louisrubet committed Feb 15, 2024
1 parent f416e17 commit 055d4d9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/snyk-security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,12 @@ jobs:
# Use || true to not fail the pipeline
- name: Snyk Code test
run: |
snyk code test --sarif > snyk-code.sarif # || true
snyk code test --sarif > snyk-code.sarif || true
cat snyk-code.sarif
if [ -z "${{ secrets.SNYK_TOKEN }}" ]; then
echo "SNYK_TOKEN empty"
exit 1
fi
# Runs Snyk Open Source (SCA) analysis and uploads result to Snyk.
- name: Snyk Open Source monitor
Expand Down

0 comments on commit 055d4d9

Please sign in to comment.