Skip to content

Commit 875709d

Browse files
authored
Rename validate to verify (#78)
Per email thread and discussion with the BOMOps tiger team on 14 Feb 2025
1 parent 5d75cfb commit 875709d

12 files changed

+308
-308
lines changed

Diff for: .github/workflows/phase_1_keycloak.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ jobs:
180180
name: final-keycloak-sbom-cyclonedx
181181
path: "/tmp/final_keycloak-sbom.cdx.json"
182182

183-
Validate:
183+
Verify:
184184
needs: Enrich
185185
runs-on: ubuntu-latest
186186
steps:

Diff for: .github/workflows/phase_1_python.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -254,8 +254,8 @@ jobs:
254254
name: enriched-sboms
255255
path: "/tmp/enriched_*.json"
256256

257-
Validate:
258-
name: "Validate SBOMs"
257+
Verify:
258+
name: "Verify SBOMs"
259259
needs: Enrich
260260
runs-on: ubuntu-latest
261261
steps:

Diff for: .github/workflows/phase_2_harbor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ jobs:
195195
name: final-harbor-sbom-cyclonedx
196196
path: "/tmp/final_harbor-sbom.cdx.json"
197197

198-
Validate:
198+
Verify:
199199
needs: Enrich
200200
runs-on: ubuntu-latest
201201
steps:

Diff for: .github/workflows/phase_2_kubectl.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ jobs:
180180
name: final-kubectl-sbom-cyclonedx
181181
path: "/tmp/final_kubectl-sbom.cdx.json"
182182

183-
Validate:
183+
Verify:
184184
needs: Enrich
185185
runs-on: ubuntu-latest
186186
steps:

Diff for: .github/workflows/phase_3_yocto.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
name: final-yocto-sbom-spdx
8383
path: "/tmp/final_yocto-sbom.spdx.json"
8484

85-
Validate:
85+
Verify:
8686
needs: Enrich
8787
runs-on: ubuntu-latest
8888
steps:

Diff for: .gitlab-ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ stages:
44
- "SBOM Generation"
55
- "SBOM Augmentation"
66
- "SBOM Enrichment"
7-
- "SBOM Validation"
7+
- "SBOM Verification"
88

99
include:
1010
- local: .gitlab/ci/*.yml

Diff for: .gitlab/ci/phase_1_keycloak.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,8 @@ Keycloak:Enrich:
106106
when: always
107107

108108

109-
Keycloak:Validate:
110-
stage: "SBOM Validation"
109+
Keycloak:Verify:
110+
stage: "SBOM Verification"
111111
before_script:
112112
- |
113113
curl -L -o /tmp/sbomqs \

Diff for: .gitlab/ci/phase_1_python.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -202,8 +202,8 @@ Python:Enrich:
202202
- phase_1/Python/final_*.json
203203
when: always
204204

205-
Python:Validate:
206-
stage: "SBOM Validation"
205+
Python:Verify:
206+
stage: "SBOM Verification"
207207
image: alpine:latest
208208
before_script:
209209
- apk add --no-cache curl

Diff for: .gitlab/ci/phase_2_kubectl.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,8 @@ Kubectl:Enrich:
125125
when: always
126126

127127

128-
Kubectl:Validate:
129-
stage: "SBOM Validation"
128+
Kubectl:Verify:
129+
stage: "SBOM Verification"
130130
before_script:
131131
- |
132132
curl -L -o /tmp/sbomqs \

Diff for: SBOM_LIFECYCLE.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ The generation step is where an SBOM is conceived. The level of "completeness" o
1414

1515
You should ideally have an SBOM that captures all transient dependencies with hashes for all components (and sub-components).
1616

17-
## Validation
17+
## Verification
1818

19-
A minimum validation would be to ensure the resultant SBOM meets the format requirements for the standard. This can be done by running utilities or validating against schemas provided by the format standard community. Additional validation can include semantic validation, validating the SBOM meets the minimum requirements, and enhances SBOM quality.
19+
A minimum verification would be to ensure the resultant SBOM meets the format requirements for the standard. This can be done by running utilities or verifying against schemas provided by the format standard community. Additional verification can include semantic verification, verifying the SBOM meets the minimum requirements, and enhances SBOM quality.
2020

2121
## Augmentation
2222

Diff for: assets/lifecycle.d2

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Authoring: {
1010
Generation
1111
Augmentation
1212
Enrichment
13-
Validation
13+
Verification
1414
Signing
1515
Document Linking
1616
}
@@ -21,7 +21,7 @@ Analysis
2121

2222
Authoring.Generation -> Authoring.Augmentation
2323
Authoring.Augmentation -> Authoring.Enrichment
24-
Authoring.Enrichment -> Authoring.Validation
25-
Authoring.Validation -> Authoring.Signing
24+
Authoring.Enrichment -> Authoring.Verification
25+
Authoring.Verification -> Authoring.Signing
2626
Authoring.Signing -> Authoring."Document Linking"
2727
Authoring."Document Linking" -> Transportation -> Analysis

Diff for: assets/lifecycle.svg

+290-290
Loading

0 commit comments

Comments
 (0)