From 50b0d3f95cee3511a3a7aed3bece73bfbafa590b Mon Sep 17 00:00:00 2001 From: kolaente Date: Mon, 5 Jun 2023 18:07:12 +0200 Subject: [PATCH] chore(deps): update golangci --- .drone.yml | 4 ++-- magefile.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.drone.yml b/.drone.yml index 363a2b3fd..f0f604cd0 100644 --- a/.drone.yml +++ b/.drone.yml @@ -152,7 +152,7 @@ steps: commands: - export "GOROOT=$(go env GOROOT)" - apk --no-cache add build-base git - - wget -O - -q https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.52.1 + - wget -O - -q https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.53.2 - ./mage-static check:golangci when: event: [ push, tag, pull_request ] @@ -743,6 +743,6 @@ steps: - failure --- kind: signature -hmac: 4bd741efb43ddcbece3597ad794906a1aa7d088f0b914609893d75038fcd58a0 +hmac: a5b2996ce0885a3c23101b1a967060c0546c1cc3607a26ff91144080a3b08402 ... diff --git a/magefile.go b/magefile.go index 136fbe70c..6bdfe3b10 100644 --- a/magefile.go +++ b/magefile.go @@ -419,7 +419,7 @@ func checkGolangCiLintInstalled() { mg.Deps(initVars) if err := exec.Command("golangci-lint").Run(); err != nil && strings.Contains(err.Error(), "executable file not found") { fmt.Println("Please manually install golangci-lint by running") - fmt.Println("curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.52.1") + fmt.Println("curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.53.2") os.Exit(1) } }