vendor: update buildkit to v0.25.0-rc1

Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com>
This commit is contained in:
Tonis Tiigi
2025-09-23 13:32:44 -07:00
parent 40f318f9d8
commit 3bea8ce3ad
47 changed files with 777 additions and 361 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
package gitutil
func IsCommitSHA(str string) bool {
if len(str) != 40 {
if l := len(str); l != 40 && l != 64 {
return false
}