GH actions example producing SBOM from pyproject.toml? #1040
-
|
Could someone provide a starting point for a github actions/workflow example for producing SBOM if dependencies are defined in a |
Beta Was this translation helpful? Give feedback.
Answered by
jkowalleck
Apr 15, 2026
Replies: 1 comment 8 replies
-
|
What have you tried so far? What is the exact environment? What repo? |
Beta Was this translation helpful? Give feedback.
8 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
even if all dependencies are pinned to exact versions, the dependency resolution is still done downstream. you have NO control what downstream users actually install and where it comes from.
For example, when people used Conda for the ecosystem management, modified dependencis are pulled from condaforge and would still match you runtime-requirements.
Or when your package is vendored by linux distros, the actual dependencie…