summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfeistel <6742251-feistel@users.noreply.gitlab.com>2022-04-21 22:07:50 +0200
committerfeistel <6742251-feistel@users.noreply.gitlab.com>2022-04-21 22:07:50 +0200
commit6d217efd6d97d14bd23af6bc6b609074968e7e88 (patch)
treee84bc9a6833eb11b469c4accaccc45a01234aeb0
parentc0953bdbc1af5b547d1130cb152e46d83e202186 (diff)
downloadgitlab-shell-6d217efd6d97d14bd23af6bc6b609074968e7e88.tar.gz
drop go 1.16 support
-rw-r--r--.gitlab-ci.yml2
-rw-r--r--go.mod63
2 files changed, 63 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 3840ec4..26abffd 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -60,7 +60,7 @@ tests:
image: golang:${GO_VERSION}
parallel:
matrix:
- - GO_VERSION: ["1.16", "1.17", "1.18"]
+ - GO_VERSION: ["1.17", "1.18"]
after_script:
- make coverage
coverage: '/\d+.\d+%/'
diff --git a/go.mod b/go.mod
index b9bde5d..7b9067e 100644
--- a/go.mod
+++ b/go.mod
@@ -1,6 +1,6 @@
module gitlab.com/gitlab-org/gitlab-shell
-go 1.16
+go 1.17
require (
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0
@@ -19,4 +19,65 @@ require (
gopkg.in/yaml.v2 v2.4.0
)
+require (
+ cloud.google.com/go v0.92.2 // indirect
+ cloud.google.com/go/profiler v0.1.0 // indirect
+ cloud.google.com/go/trace v0.1.0 // indirect
+ contrib.go.opencensus.io/exporter/stackdriver v0.13.8 // indirect
+ github.com/DataDog/datadog-go v4.4.0+incompatible // indirect
+ github.com/DataDog/sketches-go v1.0.0 // indirect
+ github.com/Microsoft/go-winio v0.5.0 // indirect
+ github.com/StackExchange/wmi v0.0.0-20190523213315-cbe66965904d // indirect
+ github.com/aws/aws-sdk-go v1.38.35 // indirect
+ github.com/beevik/ntp v0.3.0 // indirect
+ github.com/beorn7/perks v1.0.1 // indirect
+ github.com/census-instrumentation/opencensus-proto v0.3.0 // indirect
+ github.com/cespare/xxhash/v2 v2.1.1 // indirect
+ github.com/client9/reopen v1.0.0 // indirect
+ github.com/davecgh/go-spew v1.1.1 // indirect
+ github.com/go-ole/go-ole v1.2.4 // indirect
+ github.com/gogo/protobuf v1.3.2 // indirect
+ github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
+ github.com/golang/protobuf v1.5.2 // indirect
+ github.com/google/go-cmp v0.5.6 // indirect
+ github.com/google/pprof v0.0.0-20210804190019-f964ff605595 // indirect
+ github.com/google/uuid v1.2.0 // indirect
+ github.com/googleapis/gax-go/v2 v2.0.5 // indirect
+ github.com/hashicorp/yamux v0.0.0-20210316155119-a95892c5f864 // indirect
+ github.com/jmespath/go-jmespath v0.4.0 // indirect
+ github.com/lightstep/lightstep-tracer-common/golang/gogo v0.0.0-20210210170715-a8dfcb80d3a7 // indirect
+ github.com/lightstep/lightstep-tracer-go v0.25.0 // indirect
+ github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
+ github.com/oklog/ulid/v2 v2.0.2 // indirect
+ github.com/opentracing/opentracing-go v1.2.0 // indirect
+ github.com/philhofer/fwd v1.1.1 // indirect
+ github.com/pkg/errors v0.9.1 // indirect
+ github.com/pmezard/go-difflib v1.0.0 // indirect
+ github.com/prometheus/client_model v0.2.0 // indirect
+ github.com/prometheus/common v0.26.0 // indirect
+ github.com/prometheus/procfs v0.6.0 // indirect
+ github.com/sebest/xff v0.0.0-20210106013422-671bd2870b3a // indirect
+ github.com/shirou/gopsutil/v3 v3.21.2 // indirect
+ github.com/sirupsen/logrus v1.8.1 // indirect
+ github.com/tinylib/msgp v1.1.2 // indirect
+ github.com/tklauser/go-sysconf v0.3.4 // indirect
+ github.com/tklauser/numcpus v0.2.1 // indirect
+ github.com/uber/jaeger-client-go v2.29.1+incompatible // indirect
+ github.com/uber/jaeger-lib v2.4.1+incompatible // indirect
+ go.opencensus.io v0.23.0 // indirect
+ go.uber.org/atomic v1.7.0 // indirect
+ golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2 // indirect
+ golang.org/x/oauth2 v0.0.0-20210805134026-6f1e6394065a // indirect
+ golang.org/x/sys v0.0.0-20211102192858-4dd72447c267 // indirect
+ golang.org/x/text v0.3.6 // indirect
+ golang.org/x/time v0.0.0-20210220033141-f8bda1e9f3ba // indirect
+ golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
+ google.golang.org/api v0.54.0 // indirect
+ google.golang.org/appengine v1.6.7 // indirect
+ google.golang.org/genproto v0.0.0-20210813162853-db860fec028c // indirect
+ google.golang.org/protobuf v1.27.1 // indirect
+ gopkg.in/DataDog/dd-trace-go.v1 v1.32.0 // indirect
+ gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
+)
+
replace golang.org/x/crypto => gitlab.com/gitlab-org/golang-crypto v0.0.0-20220128174055-5be136049a80