From 320f3f8f3ee0dd45bbfaa808ffd217541fddacc7 Mon Sep 17 00:00:00 2001 From: Brandon Palm Date: Thu, 9 Jan 2025 11:23:44 -0600 Subject: [PATCH] Update GolangCI-lint to v1.63.3 (#166) --- .github/workflows/pre-main.yaml | 2 +- .golangci.yml | 2 +- Makefile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pre-main.yaml b/.github/workflows/pre-main.yaml index 4593db5..9b67d92 100644 --- a/.github/workflows/pre-main.yaml +++ b/.github/workflows/pre-main.yaml @@ -47,7 +47,7 @@ jobs: - name: Golangci-lint uses: golangci/golangci-lint-action@v6 with: - version: v1.62 + version: v1.63 args: --timeout 10m0s - name: Checkmake diff --git a/.golangci.yml b/.golangci.yml index 301d1d3..3a2acf6 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -111,6 +111,6 @@ issues: # golangci.com configuration # https://github.com/golangci/golangci/wiki/Configuration service: - golangci-lint-version: 1.62.x # use the fixed version to not introduce new linters unexpectedly + golangci-lint-version: 1.63.x # use the fixed version to not introduce new linters unexpectedly prepare: - echo "here I can run custom commands, but no preparation needed for this repo" diff --git a/Makefile b/Makefile index fd6c0aa..8386088 100644 --- a/Makefile +++ b/Makefile @@ -124,7 +124,7 @@ test-e2e: go test ./test/e2e/ -v -ginkgo.v GOLANGCI_LINT = $(shell pwd)/bin/golangci-lint -GOLANGCI_LINT_VERSION ?= v1.62.2 +GOLANGCI_LINT_VERSION ?= v1.63.3 golangci-lint: @[ -f $(GOLANGCI_LINT) ] || { \ set -e ;\