diff --git a/.github/workflows/trivy-scan.yml b/.github/workflows/trivy-scan.yml new file mode 100644 index 00000000..af83ffc2 --- /dev/null +++ b/.github/workflows/trivy-scan.yml @@ -0,0 +1,39 @@ +name: build +on: + push: + branches: + - master + pull_request: +permissions: + id-token: write # This is required for requesting the JWT + contents: read # This is required for actions/checkout + actions: read + security-events: write +jobs: + build: + name: Build + runs-on: ubuntu-20.04 + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Run Trivy vulnerability scanner in IaC mode + uses: aquasecurity/trivy-action@master + with: + scan-type: 'config' + hide-progress: false + format: 'sarif' + output: 'trivy-results.sarif' + ignore-unfixed: true + severity: 'CRITICAL,HIGH' + limit-severities-for-sarif: true + + - name: Modify SARIF file + run: | + sed -i 's#git::https:/##g' trivy-results.sarif + + - name: Upload Trivy scan results to GitHub Security tab + if: always() + uses: github/codeql-action/upload-sarif@v2 + with: + sarif_file: 'trivy-results.sarif' \ No newline at end of file