Rename trivy-analysis.yml to .github/workflows/trivy-analysis.yml

This commit is contained in:
rugk 2021-06-06 17:27:33 +02:00 committed by GitHub
parent 379c73aef9
commit 41f31bb6e7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

35
.github/workflows/trivy-analysis.yml vendored Normal file
View file

@ -0,0 +1,35 @@
name: build
on:
push:
branches: [ master ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ master ]
schedule:
- cron: '20 13 * * 3'
jobs:
build:
name: Trivy analysis
runs-on: "ubuntu-18.04"
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Build an image from Dockerfile
run: |
docker build -t privatebin/nginx-fpm-alpine:${{ github.sha }} .
- name: Run Trivy vulnerability scanner
uses: aquasecurity/trivy-action@master
with:
image-ref: 'privatebin/nginx-fpm-alpine:${{ github.sha }}'
format: 'template'
template: '@/contrib/sarif.tpl'
output: 'trivy-results.sarif'
severity: 'CRITICAL,HIGH'
- name: Upload Trivy scan results to GitHub Security tab
uses: github/codeql-action/upload-sarif@v1
with:
sarif_file: 'trivy-results.sarif'