This commit is contained in:
parent
e7d24d8843
commit
c3e2fab933
26
.gitea/workflows/vulnscan.yaml
Normal file
26
.gitea/workflows/vulnscan.yaml
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
name: Vulnerability Scan
|
||||||
|
|
||||||
|
on:
|
||||||
|
schedule:
|
||||||
|
- cron: '0 14 * * *'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
scan:
|
||||||
|
name: Daily Vulnerability Scan
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Pull docker image
|
||||||
|
run: docker pull docker.asperti.com/paspo/glpi:latest
|
||||||
|
|
||||||
|
- name: Run Trivy vulnerability scanner
|
||||||
|
id: scan
|
||||||
|
uses: aquasecurity/trivy-action@master
|
||||||
|
with:
|
||||||
|
image-ref: 'docker.asperti.com/paspo/glpi:latest'
|
||||||
|
format: 'sarif'
|
||||||
|
output: 'trivy-results.sarif'
|
||||||
|
|
||||||
|
- name: check output
|
||||||
|
env:
|
||||||
|
AAA: ${{ steps.scan.outputs }}
|
||||||
|
run: echo ""
|
Loading…
x
Reference in New Issue
Block a user