From e7d7c71572842e459e6e66f738381994c3c69eeb Mon Sep 17 00:00:00 2001 From: db123-test Date: Mon, 4 May 2026 09:38:37 +0330 Subject: [PATCH] ci: use latest golangci-lint version in CI workflow Replace pinned golangci-lint 1.64.8 version with latest to automatically receive updates and improvements. --- .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 2625f50..1a800fb 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 1.64.8 + run: curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b /usr/local/bin latest - name: Run golangci-lint run: golangci-lint run --timeout=3m