vendor: update to latest c/common

Fixes a flake in the system tests during image listing.

Signed-off-by: Paul Holzinger <pholzing@redhat.com>
This commit is contained in:
Paul Holzinger
2025-04-09 13:57:48 +02:00
parent 48423a615d
commit 86d7da8b08
32 changed files with 611 additions and 525 deletions

View File

@@ -149,7 +149,7 @@ func LoadFromImage(store storage.Store, image string) (string, List, error) {
}
manifestList, err := manifests.FromBlob(manifestBytes)
if err != nil {
return "", nil, err
return "", nil, fmt.Errorf("decoding manifest blob for image %q: %w", image, err)
}
list := &list{
List: manifestList,