vendor: update buildkit to v0.24.0-rc1

Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com>
This commit is contained in:
Tonis Tiigi
2025-08-27 13:39:14 -07:00
parent df7c46b02d
commit ec3b99180b
13 changed files with 97 additions and 138 deletions
+2 -2
View File
@@ -11,7 +11,7 @@ import (
"github.com/docker/buildx/driver"
"github.com/docker/cli/opts"
"github.com/moby/buildkit/util/gitutil"
"github.com/moby/buildkit/frontend/dockerfile/dfgitutil"
"github.com/pkg/errors"
"github.com/sirupsen/logrus"
)
@@ -36,7 +36,7 @@ func IsRemoteURL(c string) bool {
if isHTTPURL(c) {
return true
}
if _, err := gitutil.ParseGitRef(c); err == nil {
if _, err := dfgitutil.ParseGitRef(c); err == nil {
return true
}
return false