1
0
mirror of https://github.com/tommytran732/Synapse-Docker synced 2024-09-19 12:44:43 -04:00
Synapse-Docker/.github/workflows/scan.yml

28 lines
724 B
YAML
Raw Normal View History

name: Scan
2021-06-02 13:12:33 -04:00
on:
workflow_dispatch:
2021-06-02 13:12:33 -04:00
schedule:
# Scan the image regularly (once a day)
- cron: '0 23 * * *'
2021-06-02 13:12:33 -04:00
jobs:
scan:
2021-06-02 13:12:33 -04:00
name: Scan current image & report results
runs-on: "ubuntu-latest"
2021-06-02 13:12:33 -04:00
steps:
- name: Run Trivy vulnerability scanner
uses: aquasecurity/trivy-action@master
with:
image-ref: 'ghcr.io/tommytran732/synapse'
2021-06-02 13:12:33 -04:00
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 07:40:52 -04:00
uses: github/codeql-action/upload-sarif@v2
2021-06-02 13:12:33 -04:00
with:
sarif_file: 'trivy-results.sarif'