From 0565283e66a3a32f080710aac0f73131528b84f3 Mon Sep 17 00:00:00 2001 From: Derek Su <derek.su@suse.com> Date: Sat, 31 Aug 2024 03:33:09 +0000 Subject: [PATCH] chore(workflow): add "Scan With Trivy and Upload Results to GitHub Security Tab" Signed-off-by: Derek Su <derek.su@suse.com> --- .github/workflows/trivy-scan.yaml | 34 +++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .github/workflows/trivy-scan.yaml diff --git a/.github/workflows/trivy-scan.yaml b/.github/workflows/trivy-scan.yaml new file mode 100644 index 00000000..372c892f --- /dev/null +++ b/.github/workflows/trivy-scan.yaml @@ -0,0 +1,34 @@ +name: Scan With Trivy and Upload Results to GitHub Security Tab + +on: + workflow_dispatch: + push: + branches: + - master + - v* + pull_request: + +jobs: + scan-vulnerabilities: + name: Scan for Vulnerabilities With Trivy + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Run Trivy vulnerability scanner in fs mode + uses: aquasecurity/trivy-action@0.24.0 + with: + scan-type: "fs" + scan-ref: "." + format: "sarif" + output: "trivy-results.sarif" + exit-code: "1" + ignore-unfixed: true + severity: "CRITICAL,HIGH" + + - name: Upload Trivy Scan Results to GitHub Security Tab + if: failure() + uses: github/codeql-action/upload-sarif@v3 + with: + sarif_file: "trivy-results.sarif" \ No newline at end of file -- GitLab