mirror of
https://github.com/tommytran732/Synapse-Docker
synced 2024-11-08 14:41:32 -05:00
28 lines
724 B
YAML
28 lines
724 B
YAML
name: Scan
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
# Scan the image regularly (once a day)
|
|
- cron: '0 23 * * *'
|
|
|
|
jobs:
|
|
scan:
|
|
name: Scan current image & report results
|
|
runs-on: "ubuntu-latest"
|
|
steps:
|
|
- name: Run Trivy vulnerability scanner
|
|
uses: aquasecurity/trivy-action@master
|
|
with:
|
|
image-ref: 'ghcr.io/tommytran732/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
|
|
uses: github/codeql-action/upload-sarif@v2
|
|
with:
|
|
sarif_file: 'trivy-results.sarif'
|