From c2b272b2a122025027e137341ae87ced4eb2d4a9 Mon Sep 17 00:00:00 2001 From: Bartosz Majsak Date: Wed, 4 Sep 2024 17:20:07 +0200 Subject: [PATCH] ci(linter): bumps golangci-lint to latest version (#78) Modifies both make toolchain and GitHub action. --- .github/workflows/lint.yml | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 7906ba9..4fb622b 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -21,6 +21,6 @@ jobs: - name: golangci-lint uses: golangci/golangci-lint-action@v6 with: - version: v1.59.1 + version: v1.60.3 skip-cache: true args: --timeout 5m0s diff --git a/Makefile b/Makefile index e0d5797..3dc3b3f 100644 --- a/Makefile +++ b/Makefile @@ -180,7 +180,7 @@ $(LOCALBIN)/yq: $(call header,"Installing $(notdir $@)") GOBIN=$(LOCALBIN) go install github.com/mikefarah/yq/v4@$(YQ_VERSION) -LINT_VERSION=v1.59.1 +LINT_VERSION=v1.60.3 $(LOCALBIN)/golangci-lint: $(call header,"Installing $(notdir $@)") curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(LOCALBIN) $(LINT_VERSION)