From 2045b4d1814ef5064ff5833ab8d328136d8cc70a Mon Sep 17 00:00:00 2001 From: "ske-renovate-ce[bot]" <163154779+ske-renovate-ce[bot]@users.noreply.github.com> Date: Sat, 2 May 2026 10:40:46 +0000 Subject: [PATCH 1/3] Update dependency golangci/golangci-lint to v2.12.1 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 35a3729..725ad74 100755 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ PWD = $(shell pwd) # constants # renovate: datasource=github-releases depName=golangci/golangci-lint -GOLANGCI_VERSION = 2.11.4 +GOLANGCI_VERSION = 2.12.1 all: git-hooks tidy ## Initializes all tools out: From 38527b51d6e8f591e00a487263e32e4cf6274d03 Mon Sep 17 00:00:00 2001 From: Maximilian Geberl Date: Mon, 4 May 2026 07:39:05 +0200 Subject: [PATCH 2/3] Fix Install script --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 725ad74..5580438 100755 --- a/Makefile +++ b/Makefile @@ -36,7 +36,7 @@ out/bin: GOLANGCI_LINT = bin/golangci-lint-$(GOLANGCI_VERSION) $(GOLANGCI_LINT): - curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | bash -s -- -b bin v$(GOLANGCI_VERSION) + curl -sSfL https://golangci-lint.run/install.sh | bash -s -- -b bin v$(GOLANGCI_VERSION) @mv bin/golangci-lint "$(@)" lint: fmt $(GOLANGCI_LINT) download ## Lints all code with golangci-lint From 2c59126b996714ebfb93cf87a3de1cb9d25ff925 Mon Sep 17 00:00:00 2001 From: Maximilian Geberl Date: Mon, 4 May 2026 07:43:57 +0200 Subject: [PATCH 3/3] fix lint --- pkg/renamepvc/renamepvc_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/renamepvc/renamepvc_test.go b/pkg/renamepvc/renamepvc_test.go index 4ad1649..f9fd348 100644 --- a/pkg/renamepvc/renamepvc_test.go +++ b/pkg/renamepvc/renamepvc_test.go @@ -60,7 +60,7 @@ func TestPVCRename(t *testing.T) { ObjectMeta: metav1.ObjectMeta{Name: "pod", Namespace: "test3"}, Spec: corev1.PodSpec{ Volumes: []corev1.Volume{{ - Name: "test", + Name: "testvol", VolumeSource: corev1.VolumeSource{ PersistentVolumeClaim: &corev1.PersistentVolumeClaimVolumeSource{ ClaimName: "test3-old", ReadOnly: false,