Skip to content

Commit

Permalink
Bump versions of most dependencies (#679)
Browse files Browse the repository at this point in the history
* Upgrade dependencies

* Bump go version to 1.15

* Bump golangci-lint to v1.34.1

* Bump versions in GitHub action
  • Loading branch information
corneliusweig committed Dec 29, 2020
1 parent 6d2ef9e commit d1daecb
Show file tree
Hide file tree
Showing 4 changed files with 383 additions and 70 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:

- name: Upload binaries to the new release
if: contains(github.ref, 'tags')
uses: svenstaro/upload-release-action@v1-release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: out/krew.*
Expand Down
28 changes: 11 additions & 17 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,24 +1,18 @@
module sigs.k8s.io/krew

go 1.14
go 1.15

require (
github.com/fatih/color v1.7.0
github.com/gogo/protobuf v1.2.1 // indirect
github.com/google/go-cmp v0.3.0
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/fatih/color v1.10.0
github.com/google/go-cmp v0.5.2
github.com/kylelemons/godebug v1.1.0 // indirect
github.com/mattn/go-colorable v0.1.2 // indirect
github.com/mattn/go-isatty v0.0.8
github.com/pkg/errors v0.8.0
github.com/sahilm/fuzzy v0.0.5
github.com/spf13/cobra v0.0.3
github.com/spf13/pflag v1.0.3
golang.org/x/net v0.0.0-20190628185345-da137c7871d7 // indirect
golang.org/x/sys v0.0.0-20190712062909-fae7ac547cb7 // indirect
gopkg.in/inf.v0 v0.9.1 // indirect
k8s.io/apimachinery v0.0.0-20190717022731-0bb8574e0887
k8s.io/client-go v7.0.0+incompatible
github.com/mattn/go-isatty v0.0.12
github.com/pkg/errors v0.9.1
github.com/sahilm/fuzzy v0.1.0
github.com/spf13/cobra v1.1.1
github.com/spf13/pflag v1.0.5
k8s.io/apimachinery v0.20.1
k8s.io/client-go v11.0.0+incompatible
k8s.io/klog v1.0.0
sigs.k8s.io/yaml v1.1.0
sigs.k8s.io/yaml v1.2.0
)
Loading

0 comments on commit d1daecb

Please sign in to comment.