switch back to older npm package but increase schemaVersion #19
Workflow file for this run
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
name: SBOM Generator | |
on: | |
push: | |
branches: | |
- '**' | |
workflow_dispatch: | |
permissions: read-all | |
jobs: | |
generate-and-push-sbom: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
- name: Install cdxgen | |
working-directory: frontend | |
run: npm install -g @cyclonedx/[email protected] | |
- name: 'Generate SBOM for maven dependencies' | |
working-directory: backend | |
run: mvn org.cyclonedx:cyclonedx-maven-plugin:makeAggregateBom | |
- name: 'Generate SBOM for npm dependencies' | |
working-directory: frontend | |
run: cdxgen -o ../sbom-npm.xml -t npm . | |
- name: 'Merge frontend and backend SBOMs' | |
run: | | |
echo $(pwd) && docker run --rm -v $(pwd):/data cyclonedx/cyclonedx-cli merge --input-files data/backend/target/bom.xml data/sbom-npm.xml --output-file data/sbom.xml | |
- name: 'Push merged SBOM to dependency track' | |
env: | |
PROJECT_NAME: okr | |
run: | | |
curl --verbose -s --location --request POST ${{ secrets.DEPENDENCY_TRACK_URL }} \ | |
--header "X-Api-Key: ${{ secrets.SECRET_OWASP_DT_KEY }}" \ | |
--header "Content-Type: multipart/form-data" \ | |
--form "autoCreate=true" \ | |
--form "projectName=${PROJECT_NAME:-$GITHUB_REPOSITORY}" \ | |
--form "projectVersion=latest" \ | |
--form "[email protected]" |