Uplift linter

The golangci-lint linter runs into issue [0] when linting airshipctl
with go1.14. This uplifts the linter to a version in which the issue is
fixed.

[0] https://github.com/golangci/golangci-lint/issues/893

Change-Id: I50d3c4ab2533c1d14d01effed21906f0ef79aafc
This commit is contained in:
Ian Howell 2020-03-04 09:19:16 -06:00
parent 2bf3117197
commit b669efb95b

View File

@ -3,7 +3,7 @@ set -x
tools_bin_dir="${BASH_SOURCE%/*}"
download_url=https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh
version=v1.21.0
version=v1.23.8
if ! curl -sfL "$download_url" | sh -s -- -b "$tools_bin_dir/bin" "$version"; then
printf "Something went wrong while installing golangci-lint\n" 1>&2