v4l2rtspserver/.github/workflows/trivy.yml

32 lines
836 B
YAML
Raw Normal View History

2021-03-28 21:44:12 +00:00
name: trivy
on:
push:
branches:
- master
pull_request:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Build an image from Dockerfile
run: |
docker build -t docker.io/${{ github.repository }}:latest .
- name: Run Trivy vulnerability scanner
uses: aquasecurity/trivy-action@master
with:
image-ref: 'docker.io/${{ github.repository }}:latest'
format: 'template'
template: '@/contrib/sarif.tpl'
output: 'trivy-results.sarif'
severity: 'CRITICAL,HIGH'
- name: Upload Trivy scan results to GitHub Security tab
2022-06-01 20:00:38 +00:00
uses: github/codeql-action/upload-sarif@v2
2021-03-28 21:44:12 +00:00
with:
sarif_file: 'trivy-results.sarif'