From 6d5c60387ce56be13188f11627058b2d07f2915b Mon Sep 17 00:00:00 2001 From: Joe Previte Date: Thu, 29 Apr 2021 12:12:03 -0700 Subject: [PATCH] feat(ci): add trivy scans to workflow This adds both a trivy scan for the repo and a trivy scan for our Docker image. --- .github/workflows/ci.yaml | 58 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index d38f1e3a..8e6344db 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -406,3 +406,61 @@ jobs: with: name: release-images path: ./release-images + + trivy-scan-image: + runs-on: ubuntu-20.04 + needs: docker-amd64 + + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Download release images + uses: actions/download-artifact@v2 + with: + name: release-images + path: ./release-images + + - name: Run Trivy vulnerability scanner in image mode + # Commit SHA for v0.0.14 + uses: aquasecurity/trivy-action@b38389f8efef9798810fe0c5b5096ac198cffd54 + with: + input: "./release-images/code-server-amd64-*.tar" + scan-type: "image" + ignore-unfixed: true + format: "template" + template: "@/contrib/sarif.tpl" + output: "trivy-image-results.sarif" + severity: "HIGH,CRITICAL" + + - name: Upload Trivy scan results to GitHub Security tab + uses: github/codeql-action/upload-sarif@v1 + with: + sarif_file: "trivy-image-results.sarif" + + # We have to use two trivy jobs + # because GitHub only allows + # codeql/upload-sarif action per job + trivy-scan-repo: + runs-on: ubuntu-20.04 + + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Run Trivy vulnerability scanner in repo mode + # Commit SHA for v0.0.14 + uses: aquasecurity/trivy-action@b38389f8efef9798810fe0c5b5096ac198cffd54 + with: + scan-type: "fs" + scan-ref: "." + ignore-unfixed: true + format: "template" + template: "@/contrib/sarif.tpl" + output: "trivy-repo-results.sarif" + severity: "HIGH,CRITICAL" + + - name: Upload Trivy scan results to GitHub Security tab + uses: github/codeql-action/upload-sarif@v1 + with: + sarif_file: "trivy-repo-results.sarif"