From b669efb95b83af70555398afc281930d866b5861 Mon Sep 17 00:00:00 2001
From: Ian Howell <ian.howell0@gmail.com>
Date: Wed, 4 Mar 2020 09:19:16 -0600
Subject: [PATCH] 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
---
 tools/install_linter | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/install_linter b/tools/install_linter
index 3f033684d..d65b05cfe 100755
--- a/tools/install_linter
+++ b/tools/install_linter
@@ -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