hub-tool
hub-tool copied to clipboard
update Go version, alpine, golangci and gotestsum
Signed-off-by: João Vanzuita [email protected]
- What I did
Updated Go version to 1.18 Docker CLI to 20.10.12 ALPINE Docker image to 3.15.4 GoLang Lint to 1.45.2 Go Test Sum to 1.8.0
- How I did it
Updating software version and testing it manually on a Mac M1.
- How to verify it
Build the project without cache.
- Description for the changelog
Update Go Lang to 1.8 and update overall dependencies to the most recent versions.
p.s: before we merge, it would be nice to test on Linux and Windows.
- A picture of a cute animal (not mandatory)
The linter is failing:
#13 0.745 go: added github.com/kunalkushwaha/ltag v0.2.3
#13 0.748 ERROR: ltag not found. Install with:
#13 0.748 go get -u github.com/kunalkushwaha/ltag
We should fix it with
$ go install github.com/kunalkushwaha/ltag
Can you handle it @converge ?
The linter is failing:
#13 0.745 go: added github.com/kunalkushwaha/ltag v0.2.3 #13 0.748 ERROR: ltag not found. Install with: #13 0.748 go get -u github.com/kunalkushwaha/ltagWe should fix it with
$ go install github.com/kunalkushwaha/ltagCan you handle it @converge ?
sure thing! go install ...@version did the trick.