Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion scripts/fetch-github-sbom.js
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,10 @@ async function processLatestTagStream(spec, existing) {
}

releases[cacheKey] = {
tag: imageRef,
// Store cacheKey as tag (e.g. "latest-20260514") so buildNvidiaMapFromSbomStream
// and the nvidiaByTag lookup in buildStreamFromSbom can match by cacheKey.
// Storing the full imageRef causes the lookup to fail (wrong image name).
tag: cacheKey,
imageRef,
digest: null,
attestation,
Expand Down
Loading