From f0af5ff19f1052fb6bb5c9b9594b397a86e83663 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 27 Oct 2023 01:16:28 +0000 Subject: [PATCH] chore(deps): update golangci/golangci-lint docker tag to v1.55.1 Signed-off-by: renovate[bot] --- .github/workflows/tests.yml | 2 +- Makefile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 05a3563ba..d8098ea16 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -28,7 +28,7 @@ jobs: uses: golangci/golangci-lint-action@3a919529898de77ec3da873e3063ca4b10e7f5cc # v3.7.0 with: # renovate: datasource=docker depName=golangci/golangci-lint - version: v1.55.0 + version: v1.55.1 args: --config=.golangci.yml --verbose skip-cache: true - name: Run slowg analyzer diff --git a/Makefile b/Makefile index a4ceabf9f..d4e410662 100644 --- a/Makefile +++ b/Makefile @@ -17,8 +17,8 @@ RELEASE_GID ?= $(shell id -g) TEST_TIMEOUT ?= 5s # renovate: datasource=docker depName=golangci/golangci-lint -GOLANGCILINT_WANT_VERSION = v1.55.0 -GOLANGCILINT_IMAGE_SHA = sha256:6d35004e5b67de36dbdde54a5062d51eb51a076e291f2a71870ea8c980027c47 +GOLANGCILINT_WANT_VERSION = v1.55.1 +GOLANGCILINT_IMAGE_SHA = sha256:c4e67eb904109ade78e2f38d98a424502f016db5676409390469bcdafea0f57d GOLANGCILINT_VERSION = $(shell golangci-lint version 2>/dev/null) # renovate: datasource=docker depName=library/golang