From b83d72c00d1bbeacdb26f801e3b8cbd07bb8b0b9 Mon Sep 17 00:00:00 2001 From: Jacob Salway Date: Sun, 30 Mar 2025 19:30:15 +1100 Subject: [PATCH] Upgrade Golang to 1.24.1 and golangci-lint to 1.64.8 Signed-off-by: Jacob Salway --- Dockerfile | 2 +- Makefile | 2 +- go.mod | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8ebb5ab8..499aa826 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,7 +16,7 @@ ARG SPARK_IMAGE=spark:3.5.5 -FROM golang:1.23.1 AS builder +FROM golang:1.24.1 AS builder WORKDIR /workspace diff --git a/Makefile b/Makefile index 4ba553c3..f0c24b85 100644 --- a/Makefile +++ b/Makefile @@ -56,7 +56,7 @@ KIND_K8S_VERSION ?= v1.32.0 ENVTEST_VERSION ?= release-0.20 # ENVTEST_K8S_VERSION refers to the version of kubebuilder assets to be downloaded by envtest binary. ENVTEST_K8S_VERSION ?= 1.32.0 -GOLANGCI_LINT_VERSION ?= v1.61.0 +GOLANGCI_LINT_VERSION ?= v1.64.8 GEN_CRD_API_REFERENCE_DOCS_VERSION ?= v0.3.0 HELM_VERSION ?= v3.15.3 HELM_UNITTEST_VERSION ?= 0.5.1 diff --git a/go.mod b/go.mod index d1f666ec..bcff5508 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/kubeflow/spark-operator -go 1.23.1 +go 1.24.1 require ( cloud.google.com/go/storage v1.45.0