-
Notifications
You must be signed in to change notification settings - Fork 8
238 lines (197 loc) · 7.71 KB
/
phase_1_python.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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
---
name: Phase 1 - Python
on: [push]
env:
TRIVY_VERSION: 0.54.1
SBOMQS_VERSION: 0.1.9
SEMVER: 0.1.0
jobs:
Generate_Container:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# We're using native docker build here rather
# than 'docker/build-push-action' to make the run
# more pipeline agnostic.
- name: Build Docker image
working-directory: "phase_1/Python"
run: |
docker build -t phase-1-python .
- name: Install Trivy
run: |
curl -L -o /tmp/trivy.tgz \
"https://github.com/aquasecurity/trivy/releases/download/v${TRIVY_VERSION}/trivy_${TRIVY_VERSION}_Linux-64bit.tar.gz"
tar xvf /tmp/trivy.tgz -C /tmp
chmod +x /tmp/trivy
- name: Generate SBOM with Trivy
working-directory: "phase_1/Python"
run: |
/tmp/trivy image \
--format cyclonedx \
--output /tmp/container-sbom.cdx.json \
phase-1-python
/tmp/trivy image \
--format spdx-json \
--output /tmp/container-sbom.spdx.json \
phase-1-python
- name: Upload CycloneDX SBOM
uses: actions/upload-artifact@v4
with:
name: container-sbom-cyclonedx
path: "/tmp/container-sbom.cdx.json"
- name: Upload SPDX SBOM
uses: actions/upload-artifact@v4
with:
name: container-sbom-spdx
path: "/tmp/container-sbom.spdx.json"
Generate_Application:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Trivy
run: |
curl -L -o /tmp/trivy.tgz \
"https://github.com/aquasecurity/trivy/releases/download/v${TRIVY_VERSION}/trivy_${TRIVY_VERSION}_Linux-64bit.tar.gz"
tar xvf /tmp/trivy.tgz -C /tmp
chmod +x /tmp/trivy
- name: "CycloneDX: Generate SBOM"
working-directory: "phase_1/Python"
run: |
/tmp/trivy fs \
--format cyclonedx \
--output /tmp/application-sbom.cdx.json \
requirements.txt
- name: "SPDX: Generate SBOM"
working-directory: "phase_1/Python"
run: |
/tmp/trivy fs \
--format spdx-json \
--output /tmp/application-sbom.spdx.json \
requirements.txt
- name: Upload CycloneDX SBOM
uses: actions/upload-artifact@v4
with:
name: application-sbom-cyclonedx
path: "/tmp/application-sbom.cdx.json"
- name: Upload SPDX SBOM
uses: actions/upload-artifact@v4
with:
name: application-sbom-spdx
path: "/tmp/application-sbom.spdx.json"
Augment:
runs-on: ubuntu-latest
needs: [Generate_Container, Generate_Application]
steps:
- uses: actions/checkout@v4
- name: Download all workflow run artifacts
uses: actions/download-artifact@v4
- name: Augment Container CycloneDX
run: |
# We're using `envsubst` here to populate the metadata
# template from environment variables
export SBOM_NAME='phase1-python-container'
cat "phase_1/Python/sbom/metadata.cdx.json.tmpl" | jq | \
envsubst > metadata.cdx.json
unset SBOM_NAME
# Merge together SBOM and metadata
jq --slurp '.[0] * .[1]' \
container-sbom-cyclonedx/container-sbom.cdx.json \
metadata.cdx.json \
> /tmp/enriched_container-sbom.cdx.json
- name: Augment Application CycloneDX
run: |
# We're using `envsubst` here to populate the metadata
# template from environment variables
export SBOM_NAME='phase1-python-application'
cat "phase_1/Python/sbom/metadata.cdx.json.tmpl" | jq | \
envsubst > metadata.cdx.json
unset SBOM_NAME
# Merge together SBOM and metadata
jq --slurp '.[0] * .[1]' \
application-sbom-cyclonedx/application-sbom.cdx.json \
metadata.cdx.json \
> /tmp/enriched_application-sbom.cdx.json
- name: Augment Container SPDX
run: |
# We're using `envsubst` here to populate the metadata
# template from environment variables
export SBOM_NAME='phase1-python-container'
cat "phase_1/Python/sbom/metadata.spdx.json.tmpl" | jq | \
envsubst > metadata.spdx.json
unset SBOM_NAME
# Merge together SBOM and metadata
jq --slurp '.[0] * .[1]' \
container-sbom-spdx/container-sbom.spdx.json \
metadata.cdx.json \
> /tmp/enriched_container-sbom.spdx.json
- name: Augment Application SPDX
run: |
# We're using `envsubst` here to populate the metadata
# template from environment variables
export SBOM_NAME='phase1-python-application'
cat "phase_1/Python/sbom/metadata.cdx.json.tmpl" | jq | \
envsubst > metadata.cdx.json
unset SBOM_NAME
# Merge together SBOM and metadata
jq --slurp '.[0] * .[1]' \
application-sbom-spdx/application-sbom.spdx.json \
metadata.cdx.json \
> /tmp/enriched_application-sbom.spdx.json
- name: Upload Enriched SBOMs
uses: actions/upload-artifact@v4
with:
name: enriched-sboms
path: "/tmp/enriched_*.json"
Consolidate:
runs-on: ubuntu-latest
needs: [Augment]
steps:
- uses: actions/checkout@v4
- name: Download all workflow run artifacts
uses: actions/download-artifact@v4
# TODO: Add SPDX
- name: Build top-level CDX SBOM
run: |
# Create destination folder
mkdir /tmp/output
# Define metadata for parent template
export TOP_LEVEL_UUID=$(uuidgen)
export APPLICATION_SBOM_SHA256=$(sha256sum enriched-sboms/enriched_application-sbom.cdx.json | awk {'print $1'})
export CONTAINER_SBOM_SHA256=$(sha256sum enriched-sboms/enriched_container-sbom.cdx.json | awk {'print $1'})
export CREATION_TIMESTAMP=$(date -u +"%Y-%m-%dT%H:%M:%S%z")
export CONTAINER_BOM_REF=$(jq -r '.metadata.component["bom-ref"]' enriched-sboms/enriched_container-sbom.cdx.json)
export APPLICATION_BOM_REF=$(jq -r '.metadata.component["bom-ref"]' enriched-sboms/enriched_application-sbom.cdx.json)
# We're using `envsubst` here to populate the metadata
# template from environment variables
cat "phase_1/Python/sbom/top-level.cdx.json.tmpl" | jq | \
envsubst > top-level-sbom.cdx.json.tmp
# Set GITHUB_RUN_NUMBER as the version of the SBOM
jq '.version = (env.GITHUB_RUN_NUMBER | tonumber)' \
top-level-sbom.cdx.json.tmp \
> /tmp/output/top-level-sbom.cdx.json
# Copy in enriched SBOMs
cp enriched-sboms/enriched_*-sbom.cdx.json /tmp/output/
- name: Upload Top Level SBOMs
uses: actions/upload-artifact@v4
with:
name: top-level-sboms
path: /tmp/output/
Validate:
needs: Consolidate
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Download SBOMs
uses: actions/download-artifact@v4
- name: Install sbomqs
run: |
curl -L -o /tmp/sbomqs \
"https://github.com/interlynk-io/sbomqs/releases/download/v${SBOMQS_VERSION}/sbomqs-linux-amd64"
chmod +x /tmp/sbomqs
- name: "Display SBOM quality score through sbomqs"
run: |
echo \`\`\` >> ${GITHUB_STEP_SUMMARY}
for SBOM in $(find . -iname *.json); do
/tmp/sbomqs score "$SBOM" >> ${GITHUB_STEP_SUMMARY}
done
echo \`\`\` >> ${GITHUB_STEP_SUMMARY}