From f8b673eccd491f2a66d17baaa968da6155c1e91b Mon Sep 17 00:00:00 2001 From: Justin Chadwell Date: Wed, 16 Nov 2022 15:45:37 +0000 Subject: [PATCH] build: pass attestation attributes to build request Signed-off-by: Justin Chadwell --- build/build.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/build.go b/build/build.go index 4143bc0d..b2e6e883 100644 --- a/build/build.go +++ b/build/build.go @@ -1109,7 +1109,7 @@ func BuildWithResultHandler(ctx context.Context, nodes []builder.Node, opt map[s FrontendInputs: frontendInputs, } so.Frontend = "" - so.FrontendAttrs = nil + so.FrontendAttrs = attestations.Filter(so.FrontendAttrs) so.FrontendInputs = nil ch, done := progress.NewChannel(pw)