File tree 5 files changed +15
-4
lines changed
5 files changed +15
-4
lines changed Original file line number Diff line number Diff line change 16
16
env :
17
17
NODE_VERSION : " 20"
18
18
BUILDX_VERSION : " edge"
19
- BUILDKIT_IMAGE : " moby/buildkit:v0.18.2 "
19
+ BUILDKIT_IMAGE : " moby/buildkit:v0.19.0 "
20
20
21
21
jobs :
22
22
test :
Original file line number Diff line number Diff line change 1
1
{
2
+ "group" : {
3
+ "default" : {
4
+ "targets" : [
5
+ " default"
6
+ ]
7
+ }
8
+ },
2
9
"target" : {
3
10
"default" : {
4
11
"context" : " ." ,
9
16
"type" : " provenance"
10
17
},
11
18
{
12
- "disabled" : " true" ,
19
+ "disabled" : true ,
13
20
"type" : " sbom"
14
21
}
15
22
],
Original file line number Diff line number Diff line change 16
16
17
17
ARG NODE_VERSION=20
18
18
ARG DOCKER_VERSION=27.2.1
19
- ARG BUILDX_VERSION=0.19.3
19
+ ARG BUILDX_VERSION=0.20.1
20
20
ARG COMPOSE_VERSION=2.32.4
21
21
ARG UNDOCK_VERSION=0.8.0
22
22
Original file line number Diff line number Diff line change @@ -238,6 +238,9 @@ export class Bake {
238
238
case 'type' :
239
239
attestEntry . type = value ;
240
240
break ;
241
+ case 'disabled' :
242
+ attestEntry . disabled = Util . parseBool ( value ) ;
243
+ break ;
241
244
default :
242
245
attestEntry [ key ] = value ;
243
246
}
Original file line number Diff line number Diff line change @@ -52,7 +52,8 @@ export interface Target {
52
52
53
53
export interface AttestEntry {
54
54
type : string ;
55
- [ key : string ] : string ;
55
+ disabled ?: string | boolean ;
56
+ [ key : string ] : string | boolean | undefined ;
56
57
}
57
58
58
59
export interface CacheEntry {
You can’t perform that action at this time.
0 commit comments