-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add new workflow and update schema version of cyclonedx
- Loading branch information
1 parent
6e70a66
commit 575c20a
Showing
2 changed files
with
41 additions
and
1 deletion.
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,40 @@ | ||
name: 'Deptrack deploy' | ||
|
||
on: | ||
push: | ||
branches: [ production ] | ||
|
||
jobs: | ||
generate-and-push-sbom: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v4 | ||
|
||
- 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: | | ||
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-production | ||
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]" |
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