-
Notifications
You must be signed in to change notification settings - Fork 12
93 lines (84 loc) · 2.59 KB
/
docker.yaml
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
name: docker
on:
pull_request:
branches: [main]
paths:
- "**.go"
- "**.yaml"
- "!capm.yaml"
- "!osc-secret.yaml"
- "!example/**.yaml"
- "!helm/**"
- "Makefile"
- "!docs/src/**"
- "!hack/json-format/*.sh"
- "!hack/json-format/src/*.rs"
- "!hack/json-format/Makefile"
- "!hack/json-format/Cargo.*"
- "!hack/json-format/tests/*.rs"
push:
branches:
- 'main'
paths:
- "**.go"
- "**.yaml"
- "!capm.yaml"
- "!osc-secret.yaml"
- "!example/**.yaml"
- "!helm/**"
- "Makefile"
- "!docs/src/**"
- "!hack/json-format/*.sh"
- "!hack/json-format/src/*.rs"
- "!hack/json-format/Makefile"
- "!hack/json-format/Cargo.*"
- "!hack/json-format/tests/*.rs"
jobs:
docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# Cache Trivy Database
- name: Cache Trivy DB
uses: actions/cache@v2
with:
path: ~/.cache/trivy/db # This is where Trivy DB will be cached locally
key: ${{ runner.os }}-trivy-db # Unique cache key based on OS
restore-keys: |
${{ runner.os }}-trivy-db # Fallback key if the exact cache key isn't available
# Download Trivy DB only if cache is missing or outdated
- name: Download Trivy DB
run: |
docker run --rm \
-v $HOME/.cache/trivy/db:/root/.cache/trivy/db \
aquasec/trivy:latest image --download-db-only
# Docker Lint
- name: Docker Lint
run: bash -c "make dockerlint"
# Build and Push Docker Image
- name: Build and Push Docker Image
run: |
make docker-buildx
env:
IMG: cluster-api-outscale-controller:${{ github.sha }}
DOCKER_BUILDKIT: 1
# Trivy Scan
- name: Trivy Scan
run: bash -c "make trivy-scan"
env:
IMG: cluster-api-outscale-controller:${{ github.sha }}
# Mount cached Trivy DB to avoid redundant downloads
with:
args: |
-v $HOME/.cache/trivy/db:/root/.cache/trivy/db
# Trivy Ignore Check
- name: Trivy Ignore Check
run: bash -c "make trivy-ignore-check"
env:
IMG: cluster-api-outscale-controller:${{ github.sha }}
# Upload Trivy SARIF report if errors
- name: Upload Scan if Errors
if: ${{ always() && github.event_name != 'pull_request' }}
uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: './.trivyscan/report.sarif'