fix(cli): Remove Active default [MFST-3327] (#32) #112
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
name: Generate and Publish SBOM | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
push: | |
branches: | |
- "main" | |
permissions: | |
id-token: write | |
contents: read | |
jobs: | |
generate-and-publish-sbom: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@v4 | |
- name: generate SBOM | |
uses: manifest-cyber/manifest-github-action@main | |
with: | |
apiKey: ${{ secrets.MANIFEST_API_KEY }} | |
asset-labels: "github-action, production" | |
generator: "syft" |