tommytran732-Synapse-Docker/.github/workflows/scan.yml

30 lines
765 B
YAML
Raw Normal View History

2021-06-02 17:12:33 +00:00
name: scan
on:
schedule:
# Scan the image regularly (once a day)
- cron: '45 03 * * *'
jobs:
build:
name: Scan current image & report results
runs-on: "ubuntu-20.04"
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Run Trivy vulnerability scanner
uses: aquasecurity/trivy-action@master
with:
image-ref: 'ghcr.io/wonderfall/synapse'
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
2022-09-11 11:40:52 +00:00
uses: github/codeql-action/upload-sarif@v2
2021-06-02 17:12:33 +00:00
with:
2022-09-11 11:40:52 +00:00
sarif_file: 'trivy-results.sarif'