Skip to content

Commit d1daecb

Browse files
Bump versions of most dependencies (#679)
* Upgrade dependencies * Bump go version to 1.15 * Bump golangci-lint to v1.34.1 * Bump versions in GitHub action
1 parent 6d2ef9e commit d1daecb

File tree

4 files changed

+383
-70
lines changed

4 files changed

+383
-70
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777

7878
- name: Upload binaries to the new release
7979
if: contains(github.ref, 'tags')
80-
uses: svenstaro/upload-release-action@v1-release
80+
uses: svenstaro/upload-release-action@v2
8181
with:
8282
repo_token: ${{ secrets.GITHUB_TOKEN }}
8383
file: out/krew.*

go.mod

Lines changed: 11 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,18 @@
11
module sigs.k8s.io/krew
22

3-
go 1.14
3+
go 1.15
44

55
require (
6-
github.com/fatih/color v1.7.0
7-
github.com/gogo/protobuf v1.2.1 // indirect
8-
github.com/google/go-cmp v0.3.0
9-
github.com/inconshreveable/mousetrap v1.0.0 // indirect
6+
github.com/fatih/color v1.10.0
7+
github.com/google/go-cmp v0.5.2
108
github.com/kylelemons/godebug v1.1.0 // indirect
11-
github.com/mattn/go-colorable v0.1.2 // indirect
12-
github.com/mattn/go-isatty v0.0.8
13-
github.com/pkg/errors v0.8.0
14-
github.com/sahilm/fuzzy v0.0.5
15-
github.com/spf13/cobra v0.0.3
16-
github.com/spf13/pflag v1.0.3
17-
golang.org/x/net v0.0.0-20190628185345-da137c7871d7 // indirect
18-
golang.org/x/sys v0.0.0-20190712062909-fae7ac547cb7 // indirect
19-
gopkg.in/inf.v0 v0.9.1 // indirect
20-
k8s.io/apimachinery v0.0.0-20190717022731-0bb8574e0887
21-
k8s.io/client-go v7.0.0+incompatible
9+
github.com/mattn/go-isatty v0.0.12
10+
github.com/pkg/errors v0.9.1
11+
github.com/sahilm/fuzzy v0.1.0
12+
github.com/spf13/cobra v1.1.1
13+
github.com/spf13/pflag v1.0.5
14+
k8s.io/apimachinery v0.20.1
15+
k8s.io/client-go v11.0.0+incompatible
2216
k8s.io/klog v1.0.0
23-
sigs.k8s.io/yaml v1.1.0
17+
sigs.k8s.io/yaml v1.2.0
2418
)

0 commit comments

Comments
 (0)