From b47f7de971aa6dd957f7e4a079816dfe5b369d14 Mon Sep 17 00:00:00 2001 From: Krisztian Litkey Date: Tue, 17 Dec 2024 12:29:19 +0200 Subject: [PATCH] go.mod,Makefile,docs: use go 1.22.10. Signed-off-by: Krisztian Litkey --- Makefile | 2 +- docs/Dockerfile | 2 +- go.mod | 4 +--- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 33be81823..30034391c 100644 --- a/Makefile +++ b/Makefile @@ -37,7 +37,7 @@ GO_LINT := golint -set_exit_status GO_FMT := gofmt GO_VET := $(GO_CMD) vet GO_DEPS := $(GO_CMD) list -f '{{ join .Deps "\n" }}' -GO_VERSION ?= 1.22.1 +GO_VERSION ?= 1.22.10 GO_MODULES := $(shell $(GO_CMD) list ./...) GO_SUBPKGS := $(shell find ./pkg -name go.mod | sed 's:/go.mod::g' | grep -v testdata | \ diff --git a/docs/Dockerfile b/docs/Dockerfile index 9f069a0b0..96810c067 100644 --- a/docs/Dockerfile +++ b/docs/Dockerfile @@ -1,6 +1,6 @@ FROM sphinxdoc/sphinx:7.4.7 -ARG GO_VERSION=1.23.3 +ARG GO_VERSION=1.22 RUN apt-get update && apt-get install -y wget git diff --git a/go.mod b/go.mod index 3b60e206d..f2c4c9f97 100644 --- a/go.mod +++ b/go.mod @@ -1,8 +1,6 @@ module github.com/containers/nri-plugins -go 1.22.0 - -toolchain go1.22.3 +go 1.22.10 require ( github.com/containerd/nri v0.6.0