Skip to content

Commit

Permalink
Bump tektoncd/pipeline to v0.40.0
Browse files Browse the repository at this point in the history
This will bump tektoncd/pipeline to v0.40.0 and
also bump other deps like chains and knative pkg
to have comptability in deps

Fix code change required for chains
  • Loading branch information
piyush-garg authored and tekton-robot committed Sep 28, 2022
1 parent 3abebba commit 1896c47
Show file tree
Hide file tree
Showing 2,083 changed files with 173,084 additions and 82,199 deletions.
233 changes: 120 additions & 113 deletions go.mod

Large diffs are not rendered by default.

830 changes: 481 additions & 349 deletions go.sum

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion pkg/cmd/chain/payload.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import (

"github.com/spf13/cobra"
"github.com/tektoncd/chains/pkg/chains"
"github.com/tektoncd/chains/pkg/chains/objects"
"github.com/tektoncd/cli/pkg/chain"
"github.com/tektoncd/cli/pkg/cli"
"github.com/tektoncd/cli/pkg/taskrun"
Expand Down Expand Up @@ -95,7 +96,8 @@ func printPayloads(cs *cli.Clients, namespace string, tr *v1beta1.TaskRun, skipV
}

// Fetch the payload.
payloads, err := backend.RetrievePayloads(context.Background(), tr, opts)
trObj := objects.NewTaskRunObject(tr)
payloads, err := backend.RetrievePayloads(context.Background(), trObj, opts)
if err != nil {
return fmt.Errorf("error retrieving the payloads: %s", err)
}
Expand Down
4 changes: 3 additions & 1 deletion pkg/cmd/chain/signature.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ import (
"fmt"

"github.com/spf13/cobra"
"github.com/tektoncd/chains/pkg/chains/objects"
"github.com/tektoncd/cli/pkg/chain"
"github.com/tektoncd/cli/pkg/cli"
"github.com/tektoncd/cli/pkg/taskrun"
Expand Down Expand Up @@ -77,7 +78,8 @@ func printSignatures(cs *cli.Clients, namespace string, tr *v1beta1.TaskRun) err
}

// Fetch the signature.
signatures, err := backend.RetrieveSignatures(context.Background(), tr, opts)
trObj := objects.NewTaskRunObject(tr)
signatures, err := backend.RetrieveSignatures(context.Background(), trObj, opts)
if err != nil {
return fmt.Errorf("error retrieving the signatures: %s", err)
}
Expand Down
10 changes: 2 additions & 8 deletions vendor/bitbucket.org/creachadair/shell/bitbucket-pipelines.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

86 changes: 43 additions & 43 deletions vendor/cloud.google.com/go/.release-please-manifest-submodules.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion vendor/cloud.google.com/go/.release-please-manifest.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions vendor/cloud.google.com/go/CHANGES.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions vendor/cloud.google.com/go/compute/metadata/metadata.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

31 changes: 20 additions & 11 deletions vendor/cloud.google.com/go/internal/.repo-metadata-full.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 1896c47

Please sign in to comment.