From 98a4fe7cbc7da965809526f06b3e1634f0741628 Mon Sep 17 00:00:00 2001 From: Joseph Anttila Hall Date: Tue, 11 Feb 2025 21:56:42 -0800 Subject: [PATCH 1/2] go mod edit -go 1.23.6 --- Makefile | 2 +- go.mod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index d0a1b58d9..828ea25de 100644 --- a/Makefile +++ b/Makefile @@ -24,7 +24,7 @@ ALL_ARCH ?= amd64 arm arm64 ppc64le s390x # The output type could either be docker (local), or registry. OUTPUT_TYPE ?= docker GO_TOOLCHAIN ?= golang -GO_VERSION ?= 1.23.0 +GO_VERSION ?= 1.23.6 BASEIMAGE ?= gcr.io/distroless/static-debian12:nonroot ifeq ($(GOPATH),) diff --git a/go.mod b/go.mod index e9caef8ff..f4714b0f3 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module sigs.k8s.io/apiserver-network-proxy -go 1.23.0 +go 1.23.6 require ( github.com/golang/mock v1.6.0 From b1bec998d1cf2d20d940f87e3a6ef250b1df754d Mon Sep 17 00:00:00 2001 From: Joseph Anttila Hall Date: Thu, 20 Feb 2025 14:09:34 -0800 Subject: [PATCH 2/2] refresh golangci-lint.yaml - Use go 1.23.6 - Add release-0.32 branch (about to create) --- .github/workflows/golangci-lint.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/golangci-lint.yaml b/.github/workflows/golangci-lint.yaml index 8f78d080f..bf36f03d4 100644 --- a/.github/workflows/golangci-lint.yaml +++ b/.github/workflows/golangci-lint.yaml @@ -4,13 +4,14 @@ on: branches: - master - release-0.31 + - release-0.32 pull_request: permissions: contents: read env: - GO_VERSION: v1.23 + GO_VERSION: v1.23.6 GOLANGCI_LINT_VERSION: v1.60.1 jobs: