From ad48cee2bbf6c708df8cb6bc61200bb25183d3aa Mon Sep 17 00:00:00 2001 From: Ethan Date: Mon, 3 Oct 2022 11:53:28 -0400 Subject: [PATCH] init sbom action (#56177) --- .github/workflows/sbom-report.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/sbom-report.yml diff --git a/.github/workflows/sbom-report.yml b/.github/workflows/sbom-report.yml new file mode 100644 index 00000000000..bae173f6ef6 --- /dev/null +++ b/.github/workflows/sbom-report.yml @@ -0,0 +1,20 @@ +name: syft-sbom-ci + +on: + release: + types: [created] + +jobs: + syft-sbom: + + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v2 + + - name: Anchore SBOM Action + uses: anchore/sbom-action@v0.12.0 + with: + artifact-name: ${{ github.event.repository.name }}-spdx.json +