Skip to content

Commit

Permalink
chore(go): bump tektoncd/pipeline version
Browse files Browse the repository at this point in the history
This commit bumps the tektoncd/pipeline version in go.mod to the latest.
It also includes a change to the suite_test files to install the tekton
CRDs from their new location as of 0.58.0. See
https://github.com/tektoncd/pipeline/commit/
a4072c52e9dbe008fcb70e41d0dfcacecfd23740 for details.

Signed-off-by: Johnny Bieren <[email protected]>
  • Loading branch information
johnbieren committed Dec 10, 2024
1 parent bcf0f5a commit fd47e92
Show file tree
Hide file tree
Showing 4 changed files with 80 additions and 82 deletions.
4 changes: 4 additions & 0 deletions controllers/release/suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,10 @@ var _ = BeforeSuite(func() {
build.Default.GOPATH,
"pkg", "mod", test.GetRelativeDependencyPath("tektoncd/pipeline"), "config",
),
filepath.Join(
build.Default.GOPATH,
"pkg", "mod", test.GetRelativeDependencyPath("tektoncd/pipeline"), "config", "300-crds",
),
filepath.Join(
build.Default.GOPATH,
"pkg", "mod", test.GetRelativeDependencyPath("application-api"), "config", "crd", "bases",
Expand Down
41 changes: 20 additions & 21 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,37 +4,37 @@ go 1.22

require (
github.com/enterprise-contract/enterprise-contract-controller/api v0.1.67
github.com/go-logr/logr v1.4.1
github.com/go-logr/logr v1.4.2
github.com/konflux-ci/operator-toolkit v0.0.0-20240402130556-ef6dcbeca69d
github.com/onsi/ginkgo/v2 v2.17.3
github.com/onsi/gomega v1.33.0
github.com/operator-framework/operator-lib v0.13.0
github.com/redhat-appstudio/application-api v0.0.0-20240106104232-18f545e48a03
github.com/tektoncd/pipeline v0.57.0
github.com/tektoncd/pipeline v0.66.0
k8s.io/api v0.29.10
k8s.io/apimachinery v0.29.10
k8s.io/client-go v0.29.10
knative.dev/pkg v0.0.0-20240219120257-9227ebb57a4e
knative.dev/pkg v0.0.0-20240416145024-0f34a8815650
sigs.k8s.io/controller-runtime v0.17.6
)

require (
github.com/antlr4-go/antlr/v4 v4.13.0 // indirect
github.com/emicklei/go-restful/v3 v3.11.2 // indirect
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
github.com/google/cel-go v0.20.0 // indirect
github.com/google/cel-go v0.20.1 // indirect
github.com/google/gnostic-models v0.6.8 // indirect
github.com/google/pprof v0.0.0-20240424215950-a892ee059fd6 // indirect
github.com/grpc-ecosystem/grpc-gateway/v2 v2.19.0 // indirect
github.com/grpc-ecosystem/grpc-gateway/v2 v2.20.0 // indirect
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
github.com/opencontainers/go-digest v1.0.0 // indirect
github.com/redhat-appstudio/operator-toolkit v0.0.0-20230913085326-6c5e9d368a6a // indirect
github.com/santhosh-tekuri/jsonschema/v5 v5.3.1 // indirect
github.com/stoewer/go-strcase v1.2.0 // indirect
golang.org/x/exp v0.0.0-20240213143201-ec583247a57a // indirect
golang.org/x/tools v0.20.0 // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20240304161311-37d4d3c04a78 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240311132316-a219d84964c2 // indirect
golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20240814211410-ddb44dafa142 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240814211410-ddb44dafa142 // indirect

)

Expand All @@ -44,7 +44,7 @@ require (
github.com/beorn7/perks v1.0.1 // indirect
github.com/blendle/zapdriver v1.3.1 // indirect
github.com/census-instrumentation/opencensus-proto v0.4.1 // indirect
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/evanphx/json-patch/v5 v5.9.0 // indirect
github.com/fsnotify/fsnotify v1.7.0 // indirect
Expand All @@ -58,7 +58,7 @@ require (
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/golang/protobuf v1.5.4 // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/google/go-containerregistry v0.19.0 // indirect
github.com/google/go-containerregistry v0.19.2 // indirect
github.com/google/gofuzz v1.2.0 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
Expand All @@ -72,26 +72,25 @@ require (
github.com/pkg/errors v0.9.1
github.com/prometheus/client_golang v1.19.0
github.com/prometheus/client_model v0.6.1 // indirect
github.com/prometheus/common v0.48.0 // indirect
github.com/prometheus/common v0.52.3 // indirect
github.com/prometheus/procfs v0.12.0 // indirect
github.com/prometheus/statsd_exporter v0.23.0 // indirect
github.com/redhat-appstudio/integration-service v0.0.0-20231025084434-b3f521c408d1
github.com/spf13/pflag v1.0.6-0.20210604193023-d5e0c0615ace // indirect
go.opencensus.io v0.24.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
go.uber.org/zap v1.27.0
golang.org/x/net v0.24.0 // indirect
golang.org/x/oauth2 v0.18.0 // indirect
golang.org/x/sync v0.7.0 // indirect
golang.org/x/sys v0.19.0 // indirect
golang.org/x/term v0.19.0 // indirect
golang.org/x/text v0.14.0 // indirect
golang.org/x/net v0.28.0 // indirect
golang.org/x/oauth2 v0.22.0 // indirect
golang.org/x/sync v0.8.0 // indirect
golang.org/x/sys v0.24.0 // indirect
golang.org/x/term v0.23.0 // indirect
golang.org/x/text v0.17.0 // indirect
golang.org/x/time v0.5.0 // indirect
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
google.golang.org/api v0.170.0 // indirect
google.golang.org/appengine v1.6.8 // indirect
google.golang.org/grpc v1.62.1 // indirect
google.golang.org/protobuf v1.33.0 // indirect
google.golang.org/api v0.181.0 // indirect
google.golang.org/grpc v1.67.0 // indirect
google.golang.org/protobuf v1.34.2 // indirect
gopkg.in/inf.v0 v0.9.1 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
Expand Down
Loading

0 comments on commit fd47e92

Please sign in to comment.