Upload SBOM to EdgeBit #29
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
# based on https://securitylab.github.com/research/github-actions-preventing-pwn-requests/ | |
name: Upload SBOM to EdgeBit | |
on: | |
workflow_run: | |
workflows: ["Generate an SBOM from source code"] | |
types: | |
- completed | |
jobs: | |
upload: | |
runs-on: ubuntu-latest | |
if: github.event.workflow_run.conclusion == 'success' | |
steps: | |
- name: Download metadata | |
id: metadata | |
uses: dawidd6/action-download-artifact@v2.28.0 | |
with: | |
run_id: ${{ github.event.workflow_run.id }} | |
name: metadata.json | |
- name: Download SBOM | |
id: sbom | |
uses: dawidd6/action-download-artifact@v2.28.0 | |
with: | |
run_id: ${{ github.event.workflow_run.id }} | |
name: sbom.spdx.json | |
- name: Upload SBOM to EdgeBit | |
uses: edgebitio/edgebit-build@v1 | |
with: | |
edgebit-url: "https://edgebit.edgebit.io" | |
token: ${{ secrets.EDGEBIT_TOKEN }} | |
component: "edgebitio-sbom-server" | |
sbom-file: ./sbom.spdx.json | |
args-file: ./metadata.json |