Skip to content

Commit

Permalink
Update all dependencies
Browse files Browse the repository at this point in the history
make minimal requirement to go 1.19

clockwork has a new behaviour, cf:
jonboulle/clockwork#55 so fixing those  as well.

bump to github/v52, i have a commit in there that fix a workaround i had to add
for tkn pac info which can be removed.

wait.PollImmediate is deprecated, adding a nolint for now until wel this is
removed :upside_down:

Signed-off-by: Chmouel Boudjnah <[email protected]>
  • Loading branch information
chmouel committed May 11, 2023
1 parent a3f51ad commit 06601b3
Show file tree
Hide file tree
Showing 795 changed files with 30,649 additions and 9,031 deletions.
92 changes: 47 additions & 45 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,78 +1,80 @@
module github.com/openshift-pipelines/pipelines-as-code

go 1.18
go 1.19

require (
code.gitea.io/gitea/modules/structs v0.0.0-20190610152049-835b53fc259c
code.gitea.io/sdk/gitea v0.15.1
github.com/AlecAivazis/survey/v2 v2.3.6
github.com/bradleyfalzon/ghinstallation/v2 v2.2.0
github.com/cloudevents/sdk-go/v2 v2.13.0
github.com/bradleyfalzon/ghinstallation/v2 v2.4.0
github.com/cloudevents/sdk-go/v2 v2.14.0
github.com/fvbommel/sortorder v1.1.0
github.com/gfleury/go-bitbucket-v1 v0.0.0-20220418082332-711d7d5e805f
github.com/gobwas/glob v0.2.3
github.com/google/cel-go v0.13.0
github.com/google/cel-go v0.15.1
github.com/google/go-cmp v0.5.9
github.com/google/go-github/scrape v0.0.0-20230320201353-31350112a17a
github.com/google/go-github/v50 v50.2.0
github.com/google/go-github/scrape v0.0.0-20230508205121-0b2f91c92505
github.com/google/go-github/v52 v52.0.0
github.com/hako/durafmt v0.0.0-20210608085754-5c1018a4e16b
github.com/jonboulle/clockwork v0.3.0
github.com/jonboulle/clockwork v0.4.0
github.com/juju/ansiterm v1.0.0
github.com/ktrysmt/go-bitbucket v0.9.55
github.com/ktrysmt/go-bitbucket v0.9.56
github.com/mattn/go-colorable v0.1.13
github.com/mattn/go-isatty v0.0.17
github.com/mattn/go-isatty v0.0.18
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d
github.com/mitchellh/mapstructure v1.5.0
github.com/pkg/errors v0.9.1
github.com/spf13/cobra v1.6.1
github.com/tektoncd/pipeline v0.46.0
github.com/xanzy/go-gitlab v0.81.0
github.com/spf13/cobra v1.7.0
github.com/tektoncd/pipeline v0.47.0
github.com/xanzy/go-gitlab v0.83.0
go.opencensus.io v0.24.0
go.uber.org/zap v1.24.0
golang.org/x/oauth2 v0.6.0
golang.org/x/sync v0.1.0
golang.org/x/text v0.8.0
golang.org/x/exp v0.0.0-20230425010034-47ecfdc1ba53
golang.org/x/oauth2 v0.8.0
golang.org/x/sync v0.2.0
golang.org/x/text v0.9.0
gopkg.in/yaml.v2 v2.4.0
gotest.tools/v3 v3.4.0
k8s.io/api v0.26.3
k8s.io/apimachinery v0.26.3
k8s.io/api v0.27.1
k8s.io/apimachinery v0.27.1
k8s.io/client-go v1.5.2
k8s.io/utils v0.0.0-20230313181309-38a27ef9d749
knative.dev/eventing v0.36.7
knative.dev/pkg v0.0.0-20230320014357-4c84b1b51ee8
k8s.io/utils v0.0.0-20230505201702-9f6742963106
knative.dev/eventing v0.37.0
knative.dev/pkg v0.0.0-20230502134655-db8a35330281
sigs.k8s.io/yaml v1.3.0
)

require (
github.com/ProtonMail/go-crypto v0.0.0-20230320150741-8451524ecd7e // indirect
github.com/cloudflare/circl v1.3.2 // indirect
golang.org/x/exp v0.0.0-20230321023759-10a507213a29 // indirect
k8s.io/kube-openapi v0.0.0-20221012153701-172d655c2280 // indirect
github.com/ProtonMail/go-crypto v0.0.0-20230426101702-58e86b294756 // indirect
github.com/antlr/antlr4/runtime/Go/antlr/v4 v4.0.0-20230321174746-8dcc6526cfb1 // indirect
github.com/cloudflare/circl v1.3.3 // indirect
k8s.io/kube-openapi v0.0.0-20230501164219-8b0f38b5fd1f // indirect
)

replace k8s.io/client-go => k8s.io/client-go v0.25.4

replace k8s.io/api => k8s.io/api v0.26.3

require (
contrib.go.opencensus.io/exporter/ocagent v0.7.1-0.20200907061046-05415f1de66d // indirect
contrib.go.opencensus.io/exporter/prometheus v0.4.2 // indirect
contrib.go.opencensus.io/exporter/zipkin v0.1.2 // indirect
github.com/PuerkitoBio/goquery v1.8.1 // indirect
github.com/andybalholm/cascadia v1.3.1 // indirect
github.com/antlr/antlr4/runtime/Go/antlr v1.4.10 // indirect
github.com/andybalholm/cascadia v1.3.2 // indirect
github.com/benbjohnson/clock v1.1.0 // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/blang/semver/v4 v4.0.0 // 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/cloudevents/sdk-go/observability/opencensus/v2 v2.13.0 // indirect
github.com/cloudevents/sdk-go/observability/opencensus/v2 v2.14.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/emicklei/go-restful/v3 v3.10.2 // indirect
github.com/evanphx/json-patch v5.6.0+incompatible // indirect
github.com/evanphx/json-patch/v5 v5.6.0 // indirect
github.com/go-kit/log v0.2.1 // indirect
github.com/go-logfmt/logfmt v0.6.0 // indirect
github.com/go-logr/logr v1.2.3 // indirect
github.com/go-logr/logr v1.2.4 // indirect
github.com/go-openapi/jsonpointer v0.19.6 // indirect
github.com/go-openapi/jsonreference v0.20.2 // indirect
github.com/go-openapi/swag v0.22.3 // indirect
Expand All @@ -81,7 +83,7 @@ require (
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/google/gnostic v0.6.9 // indirect
github.com/google/go-containerregistry v0.14.0 // indirect
github.com/google/go-containerregistry v0.15.1 // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/google/gofuzz v1.2.0 // indirect
github.com/google/uuid v1.3.0 // indirect
Expand All @@ -92,7 +94,7 @@ require (
github.com/hashicorp/go-retryablehttp v0.7.2 // indirect
github.com/hashicorp/go-version v1.6.0 // indirect
github.com/hashicorp/golang-lru v0.5.4 // indirect
github.com/imdario/mergo v0.3.14 // indirect
github.com/imdario/mergo v0.3.15 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/josharian/intern v1.0.0 // indirect
github.com/json-iterator/go v1.1.12 // indirect
Expand All @@ -106,34 +108,34 @@ require (
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
github.com/opencontainers/go-digest v1.0.0 // indirect
github.com/openzipkin/zipkin-go v0.4.1 // indirect
github.com/prometheus/client_golang v1.14.0 // indirect
github.com/prometheus/client_model v0.3.0 // indirect
github.com/prometheus/common v0.42.0 // indirect
github.com/prometheus/client_golang v1.15.1 // indirect
github.com/prometheus/client_model v0.4.0 // indirect
github.com/prometheus/common v0.43.0 // indirect
github.com/prometheus/procfs v0.9.0 // indirect
github.com/prometheus/statsd_exporter v0.23.1 // indirect
github.com/rickb777/date v1.20.1 // indirect
github.com/rickb777/plural v1.4.1 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/stoewer/go-strcase v1.2.1 // indirect
github.com/stoewer/go-strcase v1.3.0 // indirect
github.com/xlzd/gotp v0.1.0 // indirect
go.uber.org/atomic v1.10.0 // indirect
go.uber.org/atomic v1.11.0 // indirect
go.uber.org/automaxprocs v1.5.2 // indirect
go.uber.org/multierr v1.8.0 // indirect
golang.org/x/crypto v0.7.0 // indirect
golang.org/x/net v0.8.0 // indirect
golang.org/x/sys v0.6.0 // indirect
golang.org/x/term v0.6.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/crypto v0.9.0 // indirect
golang.org/x/net v0.10.0 // indirect
golang.org/x/sys v0.8.0 // indirect
golang.org/x/term v0.8.0 // indirect
golang.org/x/time v0.3.0 // indirect
gomodules.xyz/jsonpatch/v2 v2.2.0 // indirect
google.golang.org/api v0.114.0 // indirect
google.golang.org/api v0.122.0 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/genproto v0.0.0-20230320184635-7606e756e683 // indirect
google.golang.org/grpc v1.53.0 // indirect
google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 // indirect
google.golang.org/grpc v1.55.0 // indirect
google.golang.org/protobuf v1.30.0 // indirect
gopkg.in/inf.v0 v0.9.1 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
k8s.io/apiextensions-apiserver v0.26.3 // indirect
k8s.io/klog/v2 v2.90.1
k8s.io/apiextensions-apiserver v0.27.1 // indirect
k8s.io/klog/v2 v2.100.1
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect
)
Loading

0 comments on commit 06601b3

Please sign in to comment.