Skip to content

Commit a5c6ca9

Browse files
author
Yoan Moscatelli
committed
✨ add sbom generation
1 parent 14f7a85 commit a5c6ca9

File tree

3 files changed

+84
-0
lines changed

3 files changed

+84
-0
lines changed

.github/workflows/generate-sbom.yaml

+71
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
name: "Generate sbom"
2+
3+
on:
4+
workflow_call:
5+
inputs:
6+
ref:
7+
description: "the git revision to checkout"
8+
default: ${{ github.sha }}
9+
required: false
10+
type: string
11+
12+
jobs:
13+
generate-sbom:
14+
runs-on: ubuntu-22.04
15+
steps:
16+
- name: Cleanup some unused ressources
17+
run: |-
18+
sudo rm -rf /usr/local/lib/android
19+
sudo rm -rf /usr/share/dotnet
20+
21+
- name: Create directories
22+
shell: bash
23+
run: |
24+
mkdir -p metalk8s_sbom/repo
25+
mkdir -p metalk8s_sbom/sbom
26+
27+
- name: Checkout
28+
uses: actions/checkout@v4
29+
with:
30+
ref: ${{ inputs.ref }}
31+
path: metalk8s_sbom/repo/metalk8s
32+
33+
- name: Scan metalk8s repository
34+
uses: scality/sbom@v1
35+
with:
36+
repo: metalk8s
37+
input_path: metalk8s_sbom/repo/metalk8s
38+
output_path: metalk8s_sbom/sbom
39+
40+
- name: Generate archive
41+
shell: bash
42+
run: |
43+
cd metalk8s_sbom/sbom
44+
tar -czf sbom_metalk8s.tar.gz *.json
45+
46+
- name: Clean up
47+
shell: bash
48+
run: |
49+
rm -rf metalk8s_sbom/repo
50+
rm -f metalk8s_sbom/sbom/*.json
51+
52+
- name: Upload SBOM to artifacts
53+
uses: scality/action-artifacts@v4
54+
with:
55+
method: upload
56+
url: https://artifacts.scality.net
57+
user: ${{ secrets.artifacts_user }}
58+
password: ${{ secrets.artifacts_password }}
59+
source: metalk8s_sbom/
60+
61+
- name: Checkout repo
62+
uses: actions/checkout@v4
63+
64+
- name: Generate Job result
65+
if: always()
66+
uses: ./.github/actions/generate-job-result
67+
with:
68+
name: generate-sbom
69+
ARTIFACTS_USER: ${{ secrets.ARTIFACTS_USER }}
70+
ARTIFACTS_PASSWORD: ${{ secrets.ARTIFACTS_PASSWORD }}
71+
GIT_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/nightly.yaml

+6
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,10 @@ jobs:
205205
nodes-count: 2
206206
k8s-conformance: true
207207

208+
generate-sbom:
209+
uses: ./.github/workflows/generate-sbom.yaml
210+
secrets: inherit
211+
208212
write-final-failed-status:
209213
runs-on: ubuntu-22.04
210214
needs:
@@ -213,6 +217,7 @@ jobs:
213217
- install
214218
- bootstrap-restore
215219
- k8s-conformance
220+
- generate-sbom
216221
if: failure()
217222
steps:
218223
- name: Checkout
@@ -240,6 +245,7 @@ jobs:
240245
- install
241246
- bootstrap-restore
242247
- k8s-conformance
248+
- generate-sbom
243249
if: success()
244250
steps:
245251
- name: Checkout

.github/workflows/promote.yaml

+7
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@ jobs:
1010
uses: ./.github/workflows/build.yaml
1111
secrets: inherit
1212

13+
generate-sbom:
14+
needs:
15+
- build
16+
uses: ./.github/workflows/generate-sbom.yaml
17+
secrets: inherit
18+
1319
promote-artifacts:
1420
needs:
1521
- build
@@ -33,6 +39,7 @@ jobs:
3339
publish:
3440
needs:
3541
- promote-artifacts
42+
- generate-sbom
3643
uses: ./.github/workflows/publish.yaml
3744
secrets: inherit
3845
with:

0 commit comments

Comments
 (0)