Merge pull request #572 from crazy-max/update-buildkit-buildx
update buildkit to 0.19.0 and buildx to 0.20.1
This commit is contained in:
@@ -238,6 +238,9 @@ export class Bake {
|
||||
case 'type':
|
||||
attestEntry.type = value;
|
||||
break;
|
||||
case 'disabled':
|
||||
attestEntry.disabled = Util.parseBool(value);
|
||||
break;
|
||||
default:
|
||||
attestEntry[key] = value;
|
||||
}
|
||||
|
||||
@@ -52,7 +52,8 @@ export interface Target {
|
||||
|
||||
export interface AttestEntry {
|
||||
type: string;
|
||||
[key: string]: string;
|
||||
disabled?: string | boolean;
|
||||
[key: string]: string | boolean | undefined;
|
||||
}
|
||||
|
||||
export interface CacheEntry {
|
||||
|
||||
Reference in New Issue
Block a user