Skip to content

Commit

Permalink
fix(ci): allow trivy to fail (temporary) (#309)
Browse files Browse the repository at this point in the history
  • Loading branch information
DerekRoberts authored Nov 11, 2024
1 parent 38a3838 commit 4bbe0d8
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,3 +98,12 @@ jobs:
with:
sarif_file: "trivy-results.sarif"

results:
name: Analysis Results
if: always()
needs: [tests, codeql] # Restore trivy when/if fixed
runs-on: ubuntu-24.04
steps:
- if: contains(needs.*.result, 'failure')
run: echo "At least one job has failed." && exit 1
- run: echo "Success!"

0 comments on commit 4bbe0d8

Please sign in to comment.