File tree Expand file tree Collapse file tree 5 files changed +15
-4
lines changed
Expand file tree Collapse file tree 5 files changed +15
-4
lines changed Original file line number Diff line number Diff line change 1616env :
1717 NODE_VERSION : " 20"
1818 BUILDX_VERSION : " edge"
19- BUILDKIT_IMAGE : " moby/buildkit:v0.18.2 "
19+ BUILDKIT_IMAGE : " moby/buildkit:v0.19.0 "
2020
2121jobs :
2222 test :
Original file line number Diff line number Diff line change 11{
2+ "group" : {
3+ "default" : {
4+ "targets" : [
5+ " default"
6+ ]
7+ }
8+ },
29 "target" : {
310 "default" : {
411 "context" : " ." ,
916 "type" : " provenance"
1017 },
1118 {
12- "disabled" : " true" ,
19+ "disabled" : true ,
1320 "type" : " sbom"
1421 }
1522 ],
Original file line number Diff line number Diff line change 1616
1717ARG NODE_VERSION=20
1818ARG DOCKER_VERSION=27.2.1
19- ARG BUILDX_VERSION=0.19.3
19+ ARG BUILDX_VERSION=0.20.1
2020ARG COMPOSE_VERSION=2.32.4
2121ARG UNDOCK_VERSION=0.8.0
2222
Original file line number Diff line number Diff line change @@ -238,6 +238,9 @@ export class Bake {
238238 case 'type' :
239239 attestEntry . type = value ;
240240 break ;
241+ case 'disabled' :
242+ attestEntry . disabled = Util . parseBool ( value ) ;
243+ break ;
241244 default :
242245 attestEntry [ key ] = value ;
243246 }
Original file line number Diff line number Diff line change @@ -52,7 +52,8 @@ export interface Target {
5252
5353export interface AttestEntry {
5454 type : string ;
55- [ key : string ] : string ;
55+ disabled ?: string | boolean ;
56+ [ key : string ] : string | boolean | undefined ;
5657}
5758
5859export interface CacheEntry {
You can’t perform that action at this time.
0 commit comments