From d7bb6ec166843d01dd1bb8b30af219d82777aa2b Mon Sep 17 00:00:00 2001 From: Christopher Desiniotis Date: Wed, 10 Jul 2024 15:20:03 -0700 Subject: [PATCH] Bump golang to 1.22.5 Signed-off-by: Christopher Desiniotis --- CHANGELOG.md | 1 + deployments/systemd/install.sh | 2 +- go.mod | 2 +- versions.mk | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 181bd64f..042ec4b3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ ## v0.8.0-rc.2 - Add --nvidia-cdi-hook flag to mig-manager - Bump nvidia-ctk version to v0.16.0-rc.2 +- Bump Golang version to 1.22.5 ## v0.8.0-rc.1 - Update to latest CUDA base image 12.5.0 diff --git a/deployments/systemd/install.sh b/deployments/systemd/install.sh index a5cdb5b5..c24d736f 100755 --- a/deployments/systemd/install.sh +++ b/deployments/systemd/install.sh @@ -45,7 +45,7 @@ chmod a+rx ${PROFILED_DIR} ${DOCKER} run --rm \ -v ${BINARY_DIR}:/dest \ - golang:1.22.4 \ + golang:1.22.5 \ sh -c " go install $MIG_PARTED_GO_GET_PATH@latest mv /go/bin/nvidia-mig-parted /dest/nvidia-mig-parted diff --git a/go.mod b/go.mod index 675d4e44..57178b4f 100644 --- a/go.mod +++ b/go.mod @@ -2,7 +2,7 @@ module github.com/NVIDIA/mig-parted go 1.21 -toolchain go1.22.4 +toolchain go1.22.5 require ( github.com/NVIDIA/go-nvlib v0.3.0 diff --git a/versions.mk b/versions.mk index 8e475f7c..8f794e8d 100644 --- a/versions.mk +++ b/versions.mk @@ -17,7 +17,7 @@ VERSION ?= v0.8.0-rc.2 vVERSION := v$(VERSION:v%=%) -GOLANG_VERSION := 1.22.4 +GOLANG_VERSION := 1.22.5 BUILDIMAGE_TAG ?= devel-go$(GOLANG_VERSION) BUILDIMAGE ?= ghcr.io/nvidia/k8s-test-infra:$(BUILDIMAGE_TAG)