diff --git a/Makefile b/Makefile index 30034391c..5405e1e87 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.10 +GO_VERSION ?= 1.23.4 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/cmd/config-manager/Dockerfile b/cmd/config-manager/Dockerfile index ce66f9c2e..0766a5610 100644 --- a/cmd/config-manager/Dockerfile +++ b/cmd/config-manager/Dockerfile @@ -1,5 +1,5 @@ # Build Stage -ARG GO_VERSION=1.22 +ARG GO_VERSION=1.23 FROM golang:${GO_VERSION}-bullseye AS build WORKDIR /go/builder diff --git a/cmd/plugins/balloons/Dockerfile b/cmd/plugins/balloons/Dockerfile index e9db72d18..97c2880db 100644 --- a/cmd/plugins/balloons/Dockerfile +++ b/cmd/plugins/balloons/Dockerfile @@ -1,4 +1,4 @@ -ARG GO_VERSION=1.22 +ARG GO_VERSION=1.23 FROM golang:${GO_VERSION}-bullseye AS builder diff --git a/cmd/plugins/memtierd/Dockerfile b/cmd/plugins/memtierd/Dockerfile index cf8d1d68f..90f6384b8 100644 --- a/cmd/plugins/memtierd/Dockerfile +++ b/cmd/plugins/memtierd/Dockerfile @@ -1,4 +1,4 @@ -ARG GO_VERSION=1.22 +ARG GO_VERSION=1.23 FROM golang:${GO_VERSION}-bullseye AS builder diff --git a/cmd/plugins/sgx-epc/Dockerfile b/cmd/plugins/sgx-epc/Dockerfile index 7a907aa86..2868613dd 100644 --- a/cmd/plugins/sgx-epc/Dockerfile +++ b/cmd/plugins/sgx-epc/Dockerfile @@ -1,4 +1,4 @@ -ARG GO_VERSION=1.22 +ARG GO_VERSION=1.23 FROM golang:${GO_VERSION}-bullseye AS builder diff --git a/cmd/plugins/template/Dockerfile b/cmd/plugins/template/Dockerfile index a657c3171..0c0b959a1 100644 --- a/cmd/plugins/template/Dockerfile +++ b/cmd/plugins/template/Dockerfile @@ -1,4 +1,4 @@ -ARG GO_VERSION=1.22 +ARG GO_VERSION=1.23 FROM golang:${GO_VERSION}-bullseye AS builder diff --git a/cmd/plugins/topology-aware/Dockerfile b/cmd/plugins/topology-aware/Dockerfile index faf356664..6adcae847 100644 --- a/cmd/plugins/topology-aware/Dockerfile +++ b/cmd/plugins/topology-aware/Dockerfile @@ -1,4 +1,4 @@ -ARG GO_VERSION=1.22 +ARG GO_VERSION=1.23 FROM golang:${GO_VERSION}-bullseye AS builder diff --git a/docs/Dockerfile b/docs/Dockerfile index 96810c067..551f51dbd 100644 --- a/docs/Dockerfile +++ b/docs/Dockerfile @@ -1,6 +1,6 @@ FROM sphinxdoc/sphinx:7.4.7 -ARG GO_VERSION=1.22 +ARG GO_VERSION=1.23 RUN apt-get update && apt-get install -y wget git diff --git a/go.mod b/go.mod index f2c4c9f97..67df521fa 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/containers/nri-plugins -go 1.22.10 +go 1.23.4 require ( github.com/containerd/nri v0.6.0