Skip to content

Commit b015efb

Browse files
authored
Bump Go to 1.17 (#744)
Signed-off-by: Gábor Lipták <[email protected]>
1 parent 74b9d00 commit b015efb

File tree

2 files changed

+20
-6
lines changed

2 files changed

+20
-6
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
goVer: [1.16]
18+
goVer: [1.17]
1919
steps:
2020

2121
- name: Set up Go ${{ matrix.goVer }}

go.mod

Lines changed: 19 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,35 @@
11
module sigs.k8s.io/krew
22

3-
go 1.16
3+
go 1.17
44

55
require (
66
github.com/fatih/color v1.12.0
77
github.com/google/go-cmp v0.5.6
8-
github.com/kylelemons/godebug v1.1.0 // indirect
98
github.com/mattn/go-isatty v0.0.13
109
github.com/pkg/errors v0.9.1
1110
github.com/sahilm/fuzzy v0.1.0
1211
github.com/spf13/cobra v1.2.1
1312
github.com/spf13/pflag v1.0.5
14-
golang.org/x/net v0.0.0-20210614182718-04defd469f4e // indirect
15-
golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c // indirect
1613
k8s.io/apimachinery v0.21.2
1714
k8s.io/client-go v11.0.0+incompatible
1815
k8s.io/klog/v2 v2.8.0
19-
sigs.k8s.io/structured-merge-diff/v4 v4.1.2 // indirect
2016
sigs.k8s.io/yaml v1.2.0
2117
)
18+
19+
require (
20+
github.com/go-logr/logr v0.4.0 // indirect
21+
github.com/gogo/protobuf v1.3.2 // indirect
22+
github.com/google/gofuzz v1.1.0 // indirect
23+
github.com/inconshreveable/mousetrap v1.0.0 // indirect
24+
github.com/json-iterator/go v1.1.11 // indirect
25+
github.com/kylelemons/godebug v1.1.0 // indirect
26+
github.com/mattn/go-colorable v0.1.8 // indirect
27+
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
28+
github.com/modern-go/reflect2 v1.0.1 // indirect
29+
golang.org/x/net v0.0.0-20210614182718-04defd469f4e // indirect
30+
golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c // indirect
31+
golang.org/x/text v0.3.6 // indirect
32+
gopkg.in/inf.v0 v0.9.1 // indirect
33+
gopkg.in/yaml.v2 v2.4.0 // indirect
34+
sigs.k8s.io/structured-merge-diff/v4 v4.1.2 // indirect
35+
)

0 commit comments

Comments
 (0)