From 531e2defd39f241c054c448de803c324993ed984 Mon Sep 17 00:00:00 2001 From: provsamanthabaldwin Date: Wed, 4 Jun 2025 13:03:57 -0700 Subject: [PATCH] fix: ghcr.io supports nested repos --- internal/manifest/manifest.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/internal/manifest/manifest.go b/internal/manifest/manifest.go index 4e1bcac..1791001 100644 --- a/internal/manifest/manifest.go +++ b/internal/manifest/manifest.go @@ -364,11 +364,6 @@ func hostSupportsNestedRepositories(host string) bool { return false } - // GHCR.io - if strings.Contains(host, "ghcr.io") { - return false - } - // Docker Registry (Docker Hub) // An empty host is assumed to be Docker Hub. if strings.Contains(host, "docker.io") || host == "" {