From a8c0d57548eb4284d8c7ae6098f5758aa538157c Mon Sep 17 00:00:00 2001 From: Tero Saarni Date: Sun, 10 Nov 2024 20:05:55 +0200 Subject: [PATCH] Remove trivy --- .github/workflows/trivy.yml | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 .github/workflows/trivy.yml diff --git a/.github/workflows/trivy.yml b/.github/workflows/trivy.yml deleted file mode 100644 index 0483d36..0000000 --- a/.github/workflows/trivy.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: trivy scan -on: - push: - branches: - - master -jobs: - build: - name: Build - runs-on: ubuntu-20.04 - steps: - - name: Checkout code - uses: actions/checkout@v4 - - # https://github.com/aquasecurity/trivy-action - - name: Run Trivy vulnerability scanner in repo mode - uses: aquasecurity/trivy-action@0.28.0 - with: - scan-type: "fs" - format: "sarif" - output: "trivy-results.sarif" - scanners: "vuln,secret,misconfig" - 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"