Skip to content

Commit 95cc366

Browse files
committed
Merge commit 'refs/pull/2759/head' of https://github.com/digitalbitbox/bitbox-wallet-app
2 parents b8a7763 + 1082868 commit 95cc366

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/ci.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,24 @@ env:
2525
GITHUB_BUILD_DIR: ${{github.workspace}}
2626

2727
jobs:
28+
trivy:
29+
name: trivy
30+
runs-on: ubuntu-22.04
31+
steps:
32+
- name: Checkout code
33+
uses: actions/checkout@v4
34+
- name: Run Trivy vulnerability scanner in repo mode
35+
uses: aquasecurity/trivy-action@0.22.0
36+
with:
37+
scan-type: 'fs'
38+
ignore-unfixed: true
39+
format: 'sarif'
40+
output: 'trivy-results.sarif'
41+
severity: 'CRITICAL,HIGH'
42+
- name: Upload Trivy scan results to GitHub Security tab
43+
uses: github/codeql-action/upload-sarif@v3
44+
with:
45+
sarif_file: 'trivy-results.sarif'
2846
test-lint:
2947
runs-on: ubuntu-22.04
3048
steps:

0 commit comments

Comments
 (0)