mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-07-09 21:17:09 +08:00
vendor: update buildkit to master@9624ab4
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
3
vendor/github.com/moby/buildkit/frontend/attestations/parse.go
generated
vendored
3
vendor/github.com/moby/buildkit/frontend/attestations/parse.go
generated
vendored
@ -13,8 +13,7 @@ const (
|
||||
)
|
||||
|
||||
const (
|
||||
// TODO: update this before next buildkit release
|
||||
defaultSBOMGenerator = "jedevc/buildkit-syft-scanner:master@sha256:de630f621eb0ab1bb1245cea76d01c5bddfe78af4f5b9adecde424cb7ec5605e"
|
||||
defaultSBOMGenerator = "docker/buildkit-syft-scanner:stable-1"
|
||||
)
|
||||
|
||||
func Filter(v map[string]string) map[string]string {
|
||||
|
5
vendor/github.com/moby/buildkit/frontend/gateway/client/attestation.go
generated
vendored
5
vendor/github.com/moby/buildkit/frontend/gateway/client/attestation.go
generated
vendored
@ -3,9 +3,14 @@ package client
|
||||
import (
|
||||
pb "github.com/moby/buildkit/frontend/gateway/pb"
|
||||
"github.com/moby/buildkit/solver/result"
|
||||
"github.com/pkg/errors"
|
||||
)
|
||||
|
||||
func AttestationToPB(a *result.Attestation) (*pb.Attestation, error) {
|
||||
if a.ContentFunc != nil {
|
||||
return nil, errors.Errorf("attestation callback cannot be sent through gateway")
|
||||
}
|
||||
|
||||
subjects := make([]*pb.InTotoSubject, len(a.InToto.Subjects))
|
||||
for i, subject := range a.InToto.Subjects {
|
||||
subjects[i] = &pb.InTotoSubject{
|
||||
|
Reference in New Issue
Block a user