Skip to content

Commit

Permalink
Merge pull request #14 from buttahtoast/trivy
Browse files Browse the repository at this point in the history
Create trivy-analysis.yml
  • Loading branch information
oliverbaehler authored Dec 25, 2020
2 parents 35106f3 + 9144a75 commit 00a450d
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/trivy-analysis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: build
on:
push:
branches: [ master ]
pull_request:
jobs:
build:
name: Build
runs-on: "ubuntu-18.04"
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Build an image from Dockerfile
run: |
docker build -t tavern:${{ github.sha }} .
- name: Run Trivy vulnerability scanner
uses: aquasecurity/trivy-action@master
with:
image-ref: 'tavern:${{ 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'

0 comments on commit 00a450d

Please sign in to comment.