buildkite / lifecycled

A daemon for responding to AWS AutoScaling Lifecycle Hooks
MIT License
146 stars 34 forks source link

Use go111 #59

Closed itsdalmo closed 5 years ago

itsdalmo commented 6 years ago

Ref #57 - this is what I end up with when I do the following:

go mod init

# Pick up build dependencies
make generate
make build
make release

# Update all deps to latest minor version and tidy
go get -u
go mod tidy

# Build/test again to make sure everything works
make test && make release

I think most of the diff between this and your branch is the go get -u to get the latest minor version of all dependencies - hopefully a good thing for bug fixes etc?