Skip to content

philips-software/sbom-tool-installer-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Repository files navigation

Contributors Forks Stargazers Issues MIT License sbom-tool-installer-action status


SBOM-Tool-Installer-Action

GitHub Action that installs and sets up the Microsoft SBOM Tool.
Report Bug · Request Feature

(back to top)

Usage

The easiest way to use this action is to add the following into your workflow file.

  1. Add the following part in your workflow file:
  jobs:
    generate-sbom:
      runs-on: windows-latest
      steps:
        - uses: philips-software/sbom-tool-installer-action@v1.1.0
        - run: |
            sbom-tool -h

Refer to SBOM-Tool official documentation to learn how to set up the SBOM-Tool itself.

Inputs

parameter description required default
version Version of the SBOM-Tool you wish to install true 'latest'

Outputs

parameter description
tool_path Path where the tool was installed to. Mostly used for debugging.

Contributing

If you have a suggestion that would make this project better, please fork the repository and create a pull request. You can also simply open an issue with the tag "enhancement".

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'feat: Add some AmazingFeature')
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

More details on contributing can be found in the CONTRIBUTING.md file.

License

Distributed under the MIT License. See LICENSE for more information.

(back to top)