-
Notifications
You must be signed in to change notification settings - Fork 2
43 lines (37 loc) · 1.19 KB
/
trivy-packager-stable.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: Trivy Scan Packager Stable
on:
push:
branches: [ "stable" ]
paths:
- 'async_packager/**'
- '.github/workflows/trivy-packager-stable.yml'
schedule:
- cron: '0 12 * * 2'
permissions:
contents: read
jobs:
build:
permissions:
contents: read # for actions/checkout to fetch code
security-events: write # for github/codeql-action/upload-sarif to upload SARIF results
name: Build
runs-on: "ubuntu-22.04"
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Build an image from Dockerfile
run: |
docker build -t async_packager:${{ github.sha }} async_packager
- name: Run Trivy vulnerability scanner on async_packager
uses: aquasecurity/trivy-action@7b7aa264d83dc58691451798b4d117d53d21edfe
with:
image-ref: 'async_packager:${{ github.sha }}'
format: 'sarif'
output: 'trivy-results.sarif'
ignore-unfixed: true
severity: 'CRITICAL,HIGH'
timeout: '20m'
- name: Upload Trivy scan results to GitHub Security tab
uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: 'trivy-results.sarif'