From 7cb7ce6542d87ead029c69b598f842190e3b0596 Mon Sep 17 00:00:00 2001 From: Juan Calderon-Perez <835733+gaby@users.noreply.github.com> Date: Tue, 8 Oct 2024 08:11:41 -0400 Subject: [PATCH] Bump golangci-lint to v1.61.0 --- .github/workflows/linter.yml | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index 148541c..7e17d8f 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -40,4 +40,4 @@ jobs: uses: golangci/golangci-lint-action@v6 with: # NOTE: Keep this in sync with the version from .golangci.yml - version: v1.60.1 \ No newline at end of file + version: v1.61.0 \ No newline at end of file diff --git a/Makefile b/Makefile index 301c133..efd715d 100644 --- a/Makefile +++ b/Makefile @@ -31,7 +31,7 @@ format: ## lint: 🚨 Run lint checks .PHONY: lint lint: - go run github.com/golangci/golangci-lint/cmd/golangci-lint@v1.60.1 run ./... + go run github.com/golangci/golangci-lint/cmd/golangci-lint@v1.61.0 run ./... ## test: 🚦 Execute all tests .PHONY: test