From bd5c77d43f3df6c60477914cd494507028932994 Mon Sep 17 00:00:00 2001 From: Wonderfall Date: Sun, 9 May 2021 00:22:22 +0200 Subject: [PATCH] Create scan.yml --- .github/workflows/scan.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/scan.yml diff --git a/.github/workflows/scan.yml b/.github/workflows/scan.yml new file mode 100644 index 0000000..a1b119b --- /dev/null +++ b/.github/workflows/scan.yml @@ -0,0 +1,26 @@ +name: build + +on: + schedule: + # Scan the image regularly (once a day) + - cron: '13 02 * * *' + +jobs: + build: + name: Scan current image & report results + runs-on: "ubuntu-20.04" + steps: + - name: Run Trivy vulnerability scanner + uses: aquasecurity/trivy-action@master + with: + image-ref: 'ghcr.io/wonderfall/mastodon' + format: 'template' + template: '@/contrib/sarif.tpl' + output: 'trivy-results.sarif' + severity: 'CRITICAL,HIGH' + vuln-type: "os" + + - name: Upload Trivy scan results to GitHub Security tab + uses: github/codeql-action/upload-sarif@v1 + with: + sarif_file: 'trivy-results.sarif'