-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generate SBOM file for python wheels, electron apps and web app. Other Changes ------------- - Add `concurrency` to `package-webapp` workflow. Closes #4770 Co-authored-by: Marcos Medrano <786907+mmmarcos@users.noreply.github.com> Signed-off-by: firelight flagboy <firelight.flagboy@gmail.com>
- Loading branch information
1 parent
7d6fae4
commit 67b5422
Showing
5 changed files
with
71 additions
and
30 deletions.
There are no files selected for viewing
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Config for syft-0.84.0 | ||
quiet: false | ||
|
||
check-for-app-update: false | ||
|
||
exclude: | ||
- ./.git | ||
# We don't ignore `target` & `node_modules` directories because they could contain additional dependencies not listed in the lock files. | ||
# Ignoring those folder result in less entries produced. | ||
# - ./target | ||
# - '**/node_modules' | ||
- "**/.mypy_cache" | ||
- "**/.hypothesis" | ||
- "**/.pytest_cache" | ||
- "**/htmlcov" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Add SBOM (Software Bills Of Materials) generation on software packaging. | ||
This provides the list of dependencies used to build the software. |