Skip to content

Update dependencies (incl. Lit 3.1.2) #36

Update dependencies (incl. Lit 3.1.2)

Update dependencies (incl. Lit 3.1.2) #36

Workflow file for this run

name: Software bill of materials (BOM)
on:
push:
branches: [main]
workflow_dispatch:
jobs:
bom:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20]
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.version }}
cache: "npm"
- name: Install @cyclonedx/cyclonedx-npm
run: npm install @cyclonedx/cyclonedx-npm --no-save
- name: Generate BOM
run: npm exec -- cyclonedx-npm --output-format XML --output-file bom.xml
- name: Push BOM to Dependency Track
env:
PROJECT_NAME: puzzle-shell
run: |
curl --verbose -s --location --request POST ${{vars.DEPENDENCY_TRACK_URL}}/api/v1/bom \
--header "X-Api-Key: ${{secrets.DEPENDENCY_TRACK_API_KEY}}" \
--header "Content-Type: multipart/form-data" \
--form "autoCreate=true" \
--form "projectName=$PROJECT_NAME" \
--form "projectVersion=latest" \
--form "[email protected]"