From c63605127b518570e98801d6f75ed79448f0d193 Mon Sep 17 00:00:00 2001 From: tuunit Date: Tue, 13 Feb 2024 12:09:42 +0100 Subject: [PATCH] fix linter version for publish workflow --- .github/workflows/publish-release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml index 24c180d9..ea8985f8 100644 --- a/.github/workflows/publish-release.yml +++ b/.github/workflows/publish-release.yml @@ -49,11 +49,11 @@ jobs: - name: Get dependencies run: | - curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.50.0 + curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.55.2 curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter chmod +x ./cc-test-reporter - # Install go depedencies + # Install go dependencies go mod download - name: Build Artifacts