From 225f822be597228bf6f94537ab08ce2073549ea8 Mon Sep 17 00:00:00 2001 From: Oleksandr Redko Date: Tue, 10 Feb 2026 12:52:39 +0200 Subject: [PATCH 1/2] chore: update local golangci-lint installation --- script/lint | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script/lint b/script/lint index 47dd537ea..aff1ec58c 100755 --- a/script/lint +++ b/script/lint @@ -8,7 +8,7 @@ BINARY=$BINDIR/golangci-lint GOLANGCI_LINT_VERSION=v2.5.0 if [ ! -f "$BINARY" ]; then - curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s "$GOLANGCI_LINT_VERSION" + curl -sSfL https://golangci-lint.run/install.sh | sh -s -- -b "$BINDIR" "$GOLANGCI_LINT_VERSION" fi -$BINARY run \ No newline at end of file +$BINARY run From c5f79b68384518f3130259be9f525937910b2ad1 Mon Sep 17 00:00:00 2001 From: Oleksandr Redko Date: Tue, 10 Feb 2026 03:12:54 -0800 Subject: [PATCH 2/2] Update script/lint Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- script/lint | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/lint b/script/lint index aff1ec58c..ab6fda514 100755 --- a/script/lint +++ b/script/lint @@ -11,4 +11,4 @@ if [ ! -f "$BINARY" ]; then curl -sSfL https://golangci-lint.run/install.sh | sh -s -- -b "$BINDIR" "$GOLANGCI_LINT_VERSION" fi -$BINARY run +"$BINARY" run