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'.
This commit is contained in:
db123-test
2026-05-04 09:38:05 +03:30
parent b4797afd39
commit 72be744484

View File

@@ -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