mirror of
https://github.com/tommytran732/Synapse-Docker
synced 2024-11-09 11:31:33 -05:00
add scan workflow
This commit is contained in:
parent
7c2dd73b51
commit
bf29665994
29
.github/workflows/scan.yml
vendored
Normal file
29
.github/workflows/scan.yml
vendored
Normal file
@ -0,0 +1,29 @@
|
||||
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
|
||||
uses: github/codeql-action/upload-sarif@v1
|
||||
with:
|
||||
sarif_file: 'trivy-results.sarif'
|
Loading…
Reference in New Issue
Block a user