-
Notifications
You must be signed in to change notification settings - Fork 23
57 lines (50 loc) · 1.64 KB
/
scan.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
49
50
51
52
53
54
55
56
57
name: "Code Scanning"
on:
push:
pull_request:
schedule:
- cron: '0 0 * * 1'
watch:
types: [started]
jobs:
Trivy-Scan:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
# - name: Build an image from Dockerfile
# run: |
# docker build -t docker.io/my-organization/my-app:${{ github.sha }} .
#
# - name: Run Trivy vulnerability scanner in docker mode
# uses: aquasecurity/trivy-action@master
# with:
# image-ref: 'docker.io/my-organization/my-app:${{ github.sha }}'
# format: 'template'
# template: '@/contrib/sarif.tpl'
# output: 'trivy-results-docker.sarif'
# severity: 'CRITICAL'
#
# - name: Upload Trivy scan results to GitHub Security tab
# uses: github/codeql-action/upload-sarif@v1
# with:
# sarif_file: 'trivy-results-docker.sarif'
- name: Run Trivy vulnerability scanner in fs mode
uses: anandg112/trivy-action@feat/add-skip-dirs-option
with:
scan-type: 'fs'
# scan-ref: '.'
ignore-unfixed: true
format: 'template'
template: '@/contrib/sarif.tpl'
output: 'trivy-results-fs.sarif'
severity: 'CRITICAL'
skip-dirs: "ignored-dir"
# - name: Upload Trivy scan results to GitHub Security tab
# uses: github/codeql-action/upload-sarif@v1
# with:
# sarif_file: 'trivy-results-fs.sarif'
- name: DEBUG Upload Trivy scan results to GitHub Security tab
uses: github/codeql-action/upload-sarif@v1
with:
sarif_file: 'debug-trivy-results.sarif'