This repository has been archived by the owner on Jan 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* build: Upgrade to go 1.17 Signed-off-by: Christian Kreuzberger <[email protected]> * fix: update deployment manifest for queuegroup Signed-off-by: Christian Kreuzberger <[email protected]> * update go.mod Signed-off-by: Christian Kreuzberger <[email protected]>
- Loading branch information
1 parent
9e5f5eb
commit 567b8b8
Showing
7 changed files
with
95 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,96 @@ | ||
module keptn-contrib/job-executor-service | ||
|
||
go 1.16 | ||
go 1.17 | ||
|
||
require ( | ||
cloud.google.com/go v0.82.0 // indirect | ||
github.com/PaesslerAG/jsonpath v0.1.1 | ||
github.com/cloudevents/sdk-go/v2 v2.5.0 | ||
github.com/golang/mock v1.6.0 | ||
github.com/google/gofuzz v1.2.0 // indirect | ||
github.com/kelseyhightower/envconfig v1.4.0 | ||
github.com/keptn/go-utils v0.12.0 | ||
github.com/keptn/kubernetes-utils v0.12.0 | ||
github.com/spf13/afero v1.8.1 | ||
github.com/stretchr/testify v1.7.0 | ||
go.uber.org/multierr v1.6.0 // indirect | ||
go.uber.org/zap v1.16.0 // indirect | ||
golang.org/x/term v0.0.0-20210429154555-c04ba851c2a4 // indirect | ||
golang.org/x/tools v0.1.2 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 | ||
gotest.tools v2.2.0+incompatible | ||
honnef.co/go/tools v0.1.3 // indirect | ||
k8s.io/api v0.22.1 | ||
k8s.io/apimachinery v0.22.1 | ||
k8s.io/client-go v0.22.1 | ||
) | ||
|
||
require ( | ||
cloud.google.com/go v0.75.0 // indirect | ||
github.com/Azure/go-autorest v14.2.0+incompatible // indirect | ||
github.com/Azure/go-autorest/autorest v0.11.21 // indirect | ||
github.com/Azure/go-autorest/autorest/adal v0.9.14 // indirect | ||
github.com/Azure/go-autorest/autorest/date v0.3.0 // indirect | ||
github.com/Azure/go-autorest/logger v0.2.1 // indirect | ||
github.com/Azure/go-autorest/tracing v0.6.0 // indirect | ||
github.com/BurntSushi/toml v0.3.1 // indirect | ||
github.com/Masterminds/goutils v1.1.1 // indirect | ||
github.com/Masterminds/semver/v3 v3.1.1 // indirect | ||
github.com/Masterminds/sprig/v3 v3.2.2 // indirect | ||
github.com/PaesslerAG/gval v1.0.0 // indirect | ||
github.com/benbjohnson/clock v1.3.0 // indirect | ||
github.com/cloudevents/sdk-go/observability/opentelemetry/v2 v2.0.0-20211001212819-74757a691209 // indirect | ||
github.com/cyphar/filepath-securejoin v0.2.2 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/evanphx/json-patch v4.11.0+incompatible // indirect | ||
github.com/felixge/httpsnoop v1.0.2 // indirect | ||
github.com/form3tech-oss/jwt-go v3.2.3+incompatible // indirect | ||
github.com/go-logr/logr v0.4.0 // indirect | ||
github.com/gobwas/glob v0.2.3 // indirect | ||
github.com/gogo/protobuf v1.3.2 // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/google/go-cmp v0.5.6 // indirect | ||
github.com/google/gofuzz v1.1.0 // indirect | ||
github.com/google/uuid v1.3.0 // indirect | ||
github.com/googleapis/gnostic v0.5.5 // indirect | ||
github.com/huandu/xstrings v1.3.1 // indirect | ||
github.com/imdario/mergo v0.3.11 // indirect | ||
github.com/json-iterator/go v1.1.11 // indirect | ||
github.com/mitchellh/copystructure v1.1.1 // indirect | ||
github.com/mitchellh/reflectwalk v1.0.1 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v1.0.1 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/shopspring/decimal v1.2.0 // indirect | ||
github.com/spf13/cast v1.3.1 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f // indirect | ||
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect | ||
github.com/xeipuuv/gojsonschema v1.2.0 // indirect | ||
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.27.0 // indirect | ||
go.opentelemetry.io/otel v1.2.0 // indirect | ||
go.opentelemetry.io/otel/internal/metric v0.25.0 // indirect | ||
go.opentelemetry.io/otel/metric v0.25.0 // indirect | ||
go.opentelemetry.io/otel/trace v1.2.0 // indirect | ||
go.uber.org/atomic v1.5.0 // indirect | ||
go.uber.org/multierr v1.3.0 // indirect | ||
go.uber.org/tools v0.0.0-20190618225709-2cfd321de3ee // indirect | ||
go.uber.org/zap v1.13.0 // indirect | ||
golang.org/x/crypto v0.0.0-20211108221036-ceb1ce70b4fa // indirect | ||
golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5 // indirect | ||
golang.org/x/mod v0.4.2 // indirect | ||
golang.org/x/net v0.0.0-20210520170846-37e1c6afe023 // indirect | ||
golang.org/x/oauth2 v0.0.0-20210218202405-ba52d332ba99 // indirect | ||
golang.org/x/sys v0.0.0-20210616094352-59db8d763f22 // indirect | ||
golang.org/x/term v0.0.0-20210220032956-6a3ed077a48d // indirect | ||
golang.org/x/text v0.3.6 // indirect | ||
golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac // indirect | ||
golang.org/x/tools v0.1.1 // indirect | ||
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/protobuf v1.27.1 // indirect | ||
gopkg.in/inf.v0 v0.9.1 // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect | ||
helm.sh/helm/v3 v3.6.1 // indirect | ||
honnef.co/go/tools v0.0.1-2020.1.4 // indirect | ||
k8s.io/apiextensions-apiserver v0.21.0 // indirect | ||
k8s.io/klog/v2 v2.9.0 // indirect | ||
k8s.io/kube-openapi v0.0.0-20210421082810-95288971da7e // indirect | ||
k8s.io/utils v0.0.0-20210707171843-4b05e18ac7d9 // indirect | ||
sigs.k8s.io/structured-merge-diff/v4 v4.1.2 // indirect | ||
sigs.k8s.io/yaml v1.3.0 // indirect | ||
) |
Oops, something went wrong.