Compare commits
No commits in common. "d4f06df911e91803d6af48b8f0e060f08429b767" and "f2f9e2ad086c68443c3457a82cf2e368aaa4bc99" have entirely different histories.
d4f06df911
...
f2f9e2ad08
|
@ -0,0 +1,27 @@
|
|||
name: "Security checks"
|
||||
on:
|
||||
schedule:
|
||||
- cron: "05 06 * * *"
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
dockers:
|
||||
name: Trivy ${{ matrix.image }}
|
||||
runs-on: ubuntu-20.04
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
image: ["searxng/searxng", "dalf/filtron", "dalf/morty"]
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Run Trivy vulnerability scanner
|
||||
uses: aquasecurity/trivy-action@master
|
||||
with:
|
||||
image-ref: '${{ matrix.image }}:latest'
|
||||
format: 'table'
|
||||
exit-code: '1'
|
||||
ignore-unfixed: false
|
||||
vuln-type: 'os,library'
|
||||
severity: 'UNKNOWN,LOW,MEDIUM,HIGH,CRITICAL'
|
Loading…
Reference in New Issue