Skip to content

Commit 802fc41

Browse files
authored
Merge pull request #852 from saikat-royc/release-1.2
Cherrypick #850 - Update go builder to 1.17
2 parents ddce45a + 17fa993 commit 802fc41

File tree

51 files changed

+130
-1861
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+130
-1861
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM golang:1.13.15 as builder
15+
FROM golang:1.17.2 as builder
1616

1717
ARG STAGINGVERSION
1818

go.mod

Lines changed: 42 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module sigs.k8s.io/gcp-compute-persistent-disk-csi-driver
22

3-
go 1.13
3+
go 1.17
44

55
require (
66
cloud.google.com/go v0.65.0
@@ -30,6 +30,47 @@ require (
3030
k8s.io/utils v0.0.0-20200324210504-a9aa75ae1b89
3131
)
3232

33+
require (
34+
github.com/Microsoft/go-winio v0.4.14 // indirect
35+
github.com/beorn7/perks v1.0.1 // indirect
36+
github.com/blang/semver v3.5.1+incompatible // indirect
37+
github.com/davecgh/go-spew v1.1.1 // indirect
38+
github.com/gogo/protobuf v1.3.1 // indirect
39+
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect
40+
github.com/google/go-cmp v0.5.2 // indirect
41+
github.com/google/gofuzz v1.1.0 // indirect
42+
github.com/googleapis/gax-go/v2 v2.0.5 // indirect
43+
github.com/googleapis/gnostic v0.3.1 // indirect
44+
github.com/hashicorp/errwrap v1.0.0 // indirect
45+
github.com/hpcloud/tail v1.0.0 // indirect
46+
github.com/imdario/mergo v0.3.8 // indirect
47+
github.com/json-iterator/go v1.1.8 // indirect
48+
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
49+
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
50+
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
51+
github.com/modern-go/reflect2 v1.0.1 // indirect
52+
github.com/pkg/errors v0.8.1 // indirect
53+
github.com/prometheus/client_golang v1.0.0 // indirect
54+
github.com/prometheus/client_model v0.2.0 // indirect
55+
github.com/prometheus/common v0.4.1 // indirect
56+
github.com/prometheus/procfs v0.0.8 // indirect
57+
github.com/sirupsen/logrus v1.4.2 // indirect
58+
github.com/spf13/pflag v1.0.5 // indirect
59+
go.opencensus.io v0.22.4 // indirect
60+
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 // indirect
61+
golang.org/x/text v0.3.3 // indirect
62+
golang.org/x/time v0.0.0-20191024005414-555d28b269f0 // indirect
63+
google.golang.org/appengine v1.6.6 // indirect
64+
google.golang.org/protobuf v1.25.0 // indirect
65+
gopkg.in/fsnotify.v1 v1.4.7 // indirect
66+
gopkg.in/inf.v0 v0.9.1 // indirect
67+
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
68+
gopkg.in/yaml.v2 v2.2.8 // indirect
69+
k8s.io/api v0.18.0 // indirect
70+
sigs.k8s.io/structured-merge-diff/v3 v3.0.0 // indirect
71+
sigs.k8s.io/yaml v1.2.0 // indirect
72+
)
73+
3374
replace k8s.io/api => k8s.io/api v0.18.0
3475

3576
replace k8s.io/apimachinery => k8s.io/apimachinery v0.18.0

vendor/github.com/Microsoft/go-winio/go.mod

Lines changed: 0 additions & 9 deletions
This file was deleted.

vendor/github.com/Microsoft/go-winio/go.sum

Lines changed: 0 additions & 16 deletions
This file was deleted.

vendor/github.com/google/gofuzz/go.mod

Lines changed: 0 additions & 3 deletions
This file was deleted.

vendor/github.com/google/uuid/go.mod

Lines changed: 0 additions & 1 deletion
This file was deleted.

vendor/github.com/googleapis/gax-go/v2/go.mod

Lines changed: 0 additions & 3 deletions
This file was deleted.

vendor/github.com/googleapis/gax-go/v2/go.sum

Lines changed: 0 additions & 25 deletions
This file was deleted.

vendor/github.com/hashicorp/errwrap/go.mod

Lines changed: 0 additions & 1 deletion
This file was deleted.

vendor/github.com/hashicorp/go-multierror/go.mod

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)