From 278743a8a91cf7dbde515e84322565c306945e67 Mon Sep 17 00:00:00 2001 From: Tessa Nordgren Date: Fri, 18 Feb 2022 12:41:36 -0800 Subject: [PATCH] fixed staticcheck install bug --- .drone.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index ce00629..5dd9a2c 100644 --- a/.drone.yml +++ b/.drone.yml @@ -10,7 +10,7 @@ steps: - name: staticcheck analysis image: golang commands: - - go install honnef.co/go/tools/cmd/staticcheck + - go install honnef.co/go/tools/cmd/staticcheck@latest - "$(go env GOPATH)/bin/staticcheck" - name: build, test and benchmark image: golang