
* Add the ability to manually trigger the SBOM generation * Bump workflow to use latest with CyloneDX v1.6 SBOM format
21 lines
525 B
YAML
21 lines
525 B
YAML
name: Snyk - Software Bill of Materials (SBOM)
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
tag_name:
|
|
description: 'Release tag name'
|
|
required: true
|
|
type: string
|
|
release:
|
|
types: [published]
|
|
|
|
jobs:
|
|
sbom:
|
|
permissions:
|
|
contents: write
|
|
uses: mattermost/actions-workflows/.github/workflows/snyk-sbom.yml@b5dc0b6b422e5ab1bd54f881d6f2e92b30302cf2
|
|
secrets: inherit
|
|
with:
|
|
is_monorepo: false
|
|
tag_name: ${{ github.event.inputs.tag_name || github.event.release.tag_name }}
|