utils/generate-cyclonedx: sort dependencies
The SBOM is easier to read if the dependencies are sorted alphabetically.
Signed-off-by: Fabien Lehoussel <fabien.lehoussel@smile.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
(cherry picked from commit 4b15707056)
Signed-off-by: Thomas Perale <thomas.perale@mind.be>
This commit is contained in:
committed by
Thomas Perale
parent
10c1fbfd6a
commit
01e97b6f5c
@@ -205,7 +205,7 @@ def cyclonedx_dependency(ref, depends):
|
||||
"""
|
||||
return {
|
||||
"ref": ref,
|
||||
"dependsOn": depends,
|
||||
"dependsOn": sorted(depends),
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user