-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (36 loc) · 1.34 KB
/
docker-build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: Build Docker Image
on: [push, pull_request]
permissions:
contents: read # for actions/checkout to fetch code
security-events: write # for github/codeql-action/upload-sarif to upload SARIF results
actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status
jobs:
build:
name: Build
runs-on: ubuntu-20.04
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Build an image from Dockerfile
run: |
docker build -t docker.io/ghsyn4ck/fafnir:${{ github.sha }} .
- name: Run Trivy vulnerability scanner
uses: aquasecurity/trivy-action@master
with:
image-ref: 'docker.io/ghsyn4ck/fafnir:${{ github.sha }}'
exit-code: '1'
format: 'sarif'
output: 'trivy-container-results.sarif'
- name: Upload SARIF file
uses: actions/[email protected]
if: always()
with:
# Artifact name
name: trivy-results
# A file, directory or wildcard pattern that describes what to upload
path: trivy-results.sarif
- name: Upload Trivy scan results to GitHub Security tab
uses: github/codeql-action/upload-sarif@v2
if: always()
with:
sarif_file: 'trivy-container-results.sarif'