diff --git a/.github/workflows/govulncheck.yml b/.github/workflows/govulncheck.yml index 6c103b235..851df249a 100644 --- a/.github/workflows/govulncheck.yml +++ b/.github/workflows/govulncheck.yml @@ -6,7 +6,7 @@ on: - cron: '0 0 * * 1' env: - GO_VERSION: "^1.22" + GO_VERSION: "^1.23" permissions: contents: read diff --git a/Dockerfile b/Dockerfile index c6b5e6ef6..86bc73fe5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -ARG GOVERSION=1.22 +ARG GOVERSION=1.23 ARG GOARCH FROM golang:${GOVERSION} as builder ARG GOARCH diff --git a/Makefile b/Makefile index 5a2d9889f..003868c7d 100644 --- a/Makefile +++ b/Makefile @@ -16,7 +16,7 @@ OS ?= $(shell uname -s | tr A-Z a-z) ALL_ARCH = amd64 arm arm64 ppc64le s390x PKG = github.com/prometheus/common PROMETHEUS_VERSION = 2.54.1 -GO_VERSION = 1.23.1 +GO_VERSION = 1.23.2 IMAGE = $(REGISTRY)/kube-state-metrics MULTI_ARCH_IMG = $(IMAGE)-$(ARCH) USER ?= $(shell id -u -n)