Skip to content

Commit 07915da

Browse files
authored
fix(alpine): add UID for removed packages (#7887)
1 parent 58fdab2 commit 07915da

File tree

3 files changed

+590
-83
lines changed

3 files changed

+590
-83
lines changed

pkg/fanal/analyzer/imgconf/apk/apk.go

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ import (
1616
"github.com/samber/lo"
1717
"golang.org/x/xerrors"
1818

19+
"github.com/aquasecurity/trivy/pkg/dependency"
1920
"github.com/aquasecurity/trivy/pkg/fanal/analyzer"
2021
"github.com/aquasecurity/trivy/pkg/fanal/types"
2122
)
@@ -134,6 +135,7 @@ func (a alpineCmdAnalyzer) parseConfig(apkIndexArchive *apkIndex, config *v1.Con
134135
pkgs = a.resolveDependencies(apkIndexArchive, pkgs)
135136
results := a.guessVersion(apkIndexArchive, pkgs, history.Created.Time)
136137
for _, result := range results {
138+
result.Identifier.UID = dependency.UID("", result)
137139
uniqPkgs[result.Name] = result
138140
}
139141
}

0 commit comments

Comments
 (0)