-
Notifications
You must be signed in to change notification settings - Fork 32
211 lines (208 loc) · 8.69 KB
/
post_release_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
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Post Release OpenC3 Trivy Scan
# Only run on a push to master to avoid running for all the dependabot PRs
on:
workflow_dispatch:
inputs:
version:
description: "Release version"
required: true
type: string
jobs:
openc3-scan:
runs-on: ubuntu-latest
steps:
- name: Create trivy output folder
run: mkdir trivy_results
- name: Create sbom folder
run: mkdir sbom
- name: Get current date
id: date
run: echo "::set-output name=date::$(date -u '+%m_%d_%y_%H_%M_%S')"
- name: Run Trivy on image ruby
uses: aquasecurity/trivy-action@master
with:
image-ref: "docker.io/openc3inc/openc3-ruby:${{ github.event.inputs.version }}"
format: "json"
output: "trivy_results/openc3-ruby.json"
ignore-unfixed: true
vuln-type: "os,library"
scanners: "vuln"
- name: Run Trivy on image ruby in SBOM mode
uses: aquasecurity/trivy-action@master
with:
image-ref: "docker.io/openc3inc/openc3-ruby:${{ github.event.inputs.version }}"
format: "cyclonedx"
output: "sbom/openc3-ruby.sbom.json"
- name: Run Trivy on image node
uses: aquasecurity/trivy-action@master
with:
image-ref: "docker.io/openc3inc/openc3-node:${{ github.event.inputs.version }}"
format: "json"
output: "trivy_results/openc3-node.json"
ignore-unfixed: true
vuln-type: "os,library"
scanners: "vuln"
- name: Run Trivy on image node in SBOM mode
uses: aquasecurity/trivy-action@master
with:
image-ref: "docker.io/openc3inc/openc3-node:${{ github.event.inputs.version }}"
format: "cyclonedx"
output: "sbom/openc3-node.sbom.json"
- name: Run Trivy on image base
uses: aquasecurity/trivy-action@master
with:
image-ref: "docker.io/openc3inc/openc3-base:${{ github.event.inputs.version }}"
format: "json"
output: "trivy_results/openc3-base.json"
ignore-unfixed: true
vuln-type: "os,library"
scanners: "vuln"
- name: Run Trivy on image base in SBOM mode
uses: aquasecurity/trivy-action@master
with:
image-ref: "docker.io/openc3inc/openc3-base:${{ github.event.inputs.version }}"
format: "cyclonedx"
output: "sbom/openc3-base.sbom.json"
- name: Run Trivy on image cosmos-init
uses: aquasecurity/trivy-action@master
with:
image-ref: "docker.io/openc3inc/openc3-cosmos-init:${{ github.event.inputs.version }}"
format: "json"
output: "trivy_results/openc3-cosmos-init.json"
ignore-unfixed: true
vuln-type: "os,library"
scanners: "vuln"
- name: Run Trivy on image cosmos-init in SBOM mode
uses: aquasecurity/trivy-action@master
with:
image-ref: "docker.io/openc3inc/openc3-cosmos-init:${{ github.event.inputs.version }}"
format: "cyclonedx"
output: "sbom/openc3-cosmos-init.sbom.json"
- name: Run Trivy on image redis
uses: aquasecurity/trivy-action@master
with:
image-ref: "docker.io/openc3inc/openc3-redis:${{ github.event.inputs.version }}"
format: "json"
output: "trivy_results/openc3-redis.json"
ignore-unfixed: true
vuln-type: "os,library"
scanners: "vuln"
- name: Run Trivy on image redis in SBOM mode
uses: aquasecurity/trivy-action@master
with:
image-ref: "docker.io/openc3inc/openc3-redis:${{ github.event.inputs.version }}"
format: "cyclonedx"
output: "sbom/openc3-redis.sbom.json"
- name: Run Trivy on image minio
uses: aquasecurity/trivy-action@master
with:
image-ref: "docker.io/openc3inc/openc3-minio:${{ github.event.inputs.version }}"
format: "json"
output: "trivy_results/openc3-minio.json"
ignore-unfixed: true
vuln-type: "os,library"
scanners: "vuln"
- name: Run Trivy on image minio in SBOM mode
uses: aquasecurity/trivy-action@master
with:
image-ref: "docker.io/openc3inc/openc3-minio:${{ github.event.inputs.version }}"
format: "cyclonedx"
output: "sbom/openc3-minio.sbom.json"
- name: Run Trivy on image operator
uses: aquasecurity/trivy-action@master
with:
image-ref: "docker.io/openc3inc/openc3-operator:${{ github.event.inputs.version }}"
format: "json"
output: "trivy_results/openc3-operator.json"
ignore-unfixed: true
vuln-type: "os,library"
scanners: "vuln"
- name: Run Trivy on image operator in SBOM mode
uses: aquasecurity/trivy-action@master
with:
image-ref: "docker.io/openc3inc/openc3-operator:${{ github.event.inputs.version }}"
format: "cyclonedx"
output: "sbom/openc3-operator.sbom.json"
- name: Run Trivy on image cmd-tlm-api
uses: aquasecurity/trivy-action@master
with:
image-ref: "docker.io/openc3inc/openc3-cosmos-cmd-tlm-api:${{ github.event.inputs.version }}"
format: "json"
output: "trivy_results/openc3-cosmos-cmd-tlm-api.json"
ignore-unfixed: true
vuln-type: "os,library"
scanners: "vuln"
- name: Run Trivy on image cosmos-cmd-tlm-api in SBOM mode
uses: aquasecurity/trivy-action@master
with:
image-ref: "docker.io/openc3inc/openc3-cosmos-cmd-tlm-api:${{ github.event.inputs.version }}"
format: "cyclonedx"
output: "sbom/openc3-cosmos-cmd-tlm-api.sbom.json"
- name: Run Trivy on image script-runner-api
uses: aquasecurity/trivy-action@master
with:
image-ref: "docker.io/openc3inc/openc3-cosmos-script-runner-api:${{ github.event.inputs.version }}"
format: "json"
output: "trivy_results/openc3-cosmos-script-runner-api.json"
ignore-unfixed: true
vuln-type: "os,library"
scanners: "vuln"
- name: Run Trivy on image cosmos-script-runner-api in SBOM mode
uses: aquasecurity/trivy-action@master
with:
image-ref: "docker.io/openc3inc/openc3-cosmos-script-runner-api:${{ github.event.inputs.version }}"
format: "cyclonedx"
output: "sbom/openc3-cosmos-script-runner-api.sbom.json"
- name: Run Trivy on image traefik
uses: aquasecurity/trivy-action@master
with:
image-ref: "docker.io/openc3inc/openc3-traefik:${{ github.event.inputs.version }}"
format: "json"
output: "trivy_results/openc3-traefik.json"
ignore-unfixed: true
vuln-type: "os,library"
scanners: "vuln"
- name: Run Trivy on image traefik in SBOM mode
uses: aquasecurity/trivy-action@master
with:
image-ref: "docker.io/openc3inc/openc3-traefik:${{ github.event.inputs.version }}"
format: "cyclonedx"
output: "sbom/openc3-traefik.sbom.json"
- name: Create zip of trivy results
run: zip -r trivy_results.zip trivy_results
- name: Create zip of SBOM results
run: zip -r sbom.zip sbom
- name: Upload release attachments
uses: actions/github-script@v6
with:
script: |
const fs = require('fs');
const tag = "v${{ github.event.inputs.version }}"
// const tag = context.ref.replace("refs/tags/", "");
console.log("tag = ", tag);
// Get release for this tag
const release = await github.repos.getReleaseByTag({
owner: context.repo.owner,
repo: context.repo.repo,
tag
});
// Upload the release asset
await github.repos.uploadReleaseAsset({
owner: context.repo.owner,
repo: context.repo.repo,
release_id: release.data.id,
name: "${{ steps.date.outputs.date }}_trivy_results_v${{ github.event.inputs.version }}.zip",
data: await fs.readFileSync("trivy_results.zip")
});
// Upload the release asset
await github.repos.uploadReleaseAsset({
owner: context.repo.owner,
repo: context.repo.repo,
release_id: release.data.id,
name: "${{ steps.date.outputs.date }}_sbom_v${{ github.event.inputs.version }}.zip",
data: await fs.readFileSync("sbom.zip")
});