-
Notifications
You must be signed in to change notification settings - Fork 821
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SBOM workflow using "npm sbom" (#4521)
* add sbom workflow * generate sbom for each package * generate sbom API * add prefix to all files * conditionally add artifacts to releases --------- Co-authored-by: Marc Pichler <[email protected]>
- Loading branch information
1 parent
3a426e8
commit aabd1a9
Showing
1 changed file
with
79 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
name: SBOM | ||
on: | ||
release: | ||
types: [published] | ||
|
||
permissions: read-all | ||
|
||
jobs: | ||
generate-sboms: | ||
runs-on: ubuntu-latest | ||
env: | ||
NPM_CONFIG_UNSAFE_PERM: true | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
|
||
- run: npm install -g npm@latest | ||
|
||
- name: Bootstrap | ||
run: npm ci | ||
|
||
- name: Generate SBOM for core packages | ||
if: ${{ ! startsWith(github.ref, 'refs/tags/experimental') && ! startsWith(github.ref, 'refs/tags/api') }} | ||
run: | | ||
for dir in $(find packages -mindepth 1 -maxdepth 1 -type d) | ||
do | ||
dir_name=$(basename "$dir") | ||
echo "Generating SBOM for $dir_name" | ||
npm sbom --sbom-format=spdx --legacy-peer-deps --workspace ${dir} > "opentelemetry-js_${dir_name}.spdx.json" | ||
done | ||
- name: Generate SBOM for the API package | ||
if: startsWith(github.ref, 'refs/tags/api/') | ||
run: | | ||
npm sbom --sbom-format=spdx --legacy-peer-deps --workspace api > opentelemetry-js_api.spdx.json | ||
- name: Generate SBOMs for experimental packages | ||
if: startsWith(github.ref, 'refs/tags/experimental/') | ||
run: | | ||
for dir in $(find experimental/packages -mindepth 1 -maxdepth 1 -type d) | ||
do | ||
dir_name=$(basename "$dir") | ||
echo "Generating SBOM for $dir_name" | ||
npm sbom --sbom-format=spdx --legacy-peer-deps --workspace ${dir} > "opentelemetry-js_${dir_name}.spdx.json" | ||
done | ||
- name: Zip all SBOM files | ||
run: | | ||
zip sbom.zip *.spdx.json | ||
- name: Upload artifact | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: SBOM.zip | ||
path: ./sbom.zip | ||
|
||
add-release-artifact: | ||
needs: generate-sboms | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
steps: | ||
- name: Download artifact from generate-sboms | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: SBOM.zip | ||
- name: Upload release asset | ||
uses: actions/upload-release-asset@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ github.event.release.upload_url }} | ||
asset_path: ./sbom.zip | ||
asset_name: SBOM.zip | ||
asset_content_type: application/zip |