vendor: update buildkit to v0.24.0-rc2

Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com>
This commit is contained in:
Tonis Tiigi
2025-08-29 14:49:16 -07:00
parent ce3592e4ab
commit 1f39ad2001
14 changed files with 284 additions and 74 deletions
+1 -1
View File
@@ -36,7 +36,7 @@ func IsRemoteURL(c string) bool {
if isHTTPURL(c) {
return true
}
if _, err := dfgitutil.ParseGitRef(c); err == nil {
if _, ok, _ := dfgitutil.ParseGitRef(c); ok {
return true
}
return false