From 72be744484dfe0bde2a5e9124299eca27f9a2f06 Mon Sep 17 00:00:00 2001 From: db123-test Date: Mon, 4 May 2026 09:38:05 +0330 Subject: [PATCH] fix(ci-cd): remove 'v' prefix from golangci-lint version The install.sh script expects plain version numbers without the 'v' prefix, so using 'v1.64.8' causes the version string to be interpreted incorrectly. Updated the version format to match the expected format '1.64.8'. --- .github/workflows/ci-cd.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 70be7ab..2625f50 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -21,7 +21,7 @@ jobs: run: go mod download - name: Install golangci-lint - run: curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b /usr/local/bin v1.64.8 + run: curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b /usr/local/bin 1.64.8 - name: Run golangci-lint run: golangci-lint run --timeout=3m