-
Notifications
You must be signed in to change notification settings - Fork 37
48 lines (43 loc) · 1.4 KB
/
trivy.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
44
45
46
47
48
name: trivy container scan
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
schedule:
- cron: '45 10 * * 1'
permissions:
contents: read
jobs:
image_scan:
strategy:
matrix:
image:
- 'registry.helix.ml/helix/controlplane:latest'
- 'postgres:12.13-alpine'
- 'quay.io/keycloak/keycloak:23.0'
- 'registry.helix.ml/helix/gptscript-runner:latest'
- 'apache/tika:2.9.2.1'
- 'registry.helix.ml/helix/typesense:latest'
- 'ghcr.io/go-rod/rod:v0.115.0'
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
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Run Trivy vulnerability scanner
uses: aquasecurity/[email protected]
with:
image-ref: ${{ matrix.image }}
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@v3
with:
sarif_file: 'trivy-results.sarif'