vendor: update buildkit to v0.31.0-rc1

Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com>
This commit is contained in:
Tonis Tiigi
2026-06-10 14:19:03 -07:00
parent dd388bf70e
commit b5cf212276
4 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -78,7 +78,7 @@ func DefaultGCPolicy(cfg GCConfig, dstat disk.DiskStat) []GCPolicy {
return []GCPolicy{
// if build cache uses more than 512MB delete the most easily reproducible data after it has not been used for 2 days
{
Filters: []string{"type==source.local,type==exec.cachemount,type==source.git.checkout"},
Filters: []string{"type==source.local", "type==exec.cachemount", "type==source.git.checkout"},
KeepDuration: Duration{Duration: time.Duration(48) * time.Hour}, // 48h
MaxUsedSpace: DiskSpace{Bytes: 512 * 1e6}, // 512MB
},