Closed nvanheuverzwijn closed 2 years ago
@stevesloka Are you open to create a new binary on Go 1.11 ?
Hey @nvanheuverzwijn thanks for the PR. Would you mind re-doing this in go modules? We should also bump the k8s version along with the go version. Thanks!
@stevesloka I must admit that I am not too familiar with Go so I am not too sure what it means to redo this in Go modules :(
Description
The current version of dep this repository is using is an old version. This PR use the latest version of go dep. This PR also bump the go runtime from 1.8 to 1.11.
What it does
manifest.json
andlock.json
are replaced withGopkg.toml
andGopkg.lock
. Test packages are removed fromvendor
directory.How this patch was acheived
Command
go dep init
was used to generate Gopkg.toml and Gopkg.lock. Test were run locally withmake build
andmake test
.