Skip to content

Commit

Permalink
Merge commit 'refs/pull/2759/head' of https://github.com/digitalbitbo…
Browse files Browse the repository at this point in the history
  • Loading branch information
benma committed Jun 10, 2024
2 parents b8a7763 + 1082868 commit 95cc366
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,24 @@ env:
GITHUB_BUILD_DIR: ${{github.workspace}}

jobs:
trivy:
name: trivy
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Run Trivy vulnerability scanner in repo mode
uses: aquasecurity/[email protected]
with:
scan-type: 'fs'
ignore-unfixed: true
format: 'sarif'
output: 'trivy-results.sarif'
severity: 'CRITICAL,HIGH'
- name: Upload Trivy scan results to GitHub Security tab
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: 'trivy-results.sarif'
test-lint:
runs-on: ubuntu-22.04
steps:
Expand Down

0 comments on commit 95cc366

Please sign in to comment.