From f7df1ccc8bec76abab43d433b1e81a00d091966e Mon Sep 17 00:00:00 2001 From: Sean McGinnis Date: Fri, 2 Aug 2024 11:27:14 -0500 Subject: [PATCH] Update golangci-lint to 1.59.1 (#357) This updates the version of golangci-lint used in linting to the current latest release of 1.59.1. Signed-off-by: Sean McGinnis --- .github/workflows/check.yml | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 011f5db6..33f703b9 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -44,4 +44,4 @@ jobs: - name: Run golangci-lint uses: golangci/golangci-lint-action@v6 with: - version: v1.57 + version: v1.59.1 diff --git a/Makefile b/Makefile index 5a2f14f7..5913aff8 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ PKGS := $(shell go list ./... | grep -v example | grep -v tools) ROOT_DIR := $(shell git rev-parse --show-toplevel) -GOLANGCI_VERSION := "v1.57" +GOLANGCI_VERSION := "v1.59.1" all: lint build test