Skip to content

Commit cd9c4e2

Browse files
committed
Bump golang to v1.24
1 parent 81af441 commit cd9c4e2

File tree

7 files changed

+8
-78
lines changed

7 files changed

+8
-78
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ GO_FMT := gofmt
1111
GO_CYCLO := gocyclo
1212
GO_LINT := golint
1313
GO_CILINT := golangci-lint
14-
GO_VERSION ?= 1.22.11
14+
GO_VERSION ?= 1.24.1
1515
GOLICENSES_VERSION ?= v1.5.0
1616

1717
# TEST_TAGS is the set of extra build tags passed for tests.

cmd/cri-resmgr-agent/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG GO_VERSION=1.22
1+
ARG GO_VERSION=1.24
22

33
FROM golang:${GO_VERSION}-bullseye as builder
44

cmd/cri-resmgr-webhook/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG GO_VERSION=1.22
1+
ARG GO_VERSION=1.24
22

33
FROM golang:${GO_VERSION}-bullseye as builder
44

demo/lib/distro.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# shellcheck disable=SC2120
22
GO_URLDIR=https://golang.org/dl
3-
GO_VERSION=1.22.11
3+
GO_VERSION=1.24.1
44
GOLANG_URL=$GO_URLDIR/go$GO_VERSION.linux-amd64.tar.gz
55
CRICTL_VERSION=${CRICTL_VERSION:-"v1.25.0"}
66
MINIKUBE_VERSION=${MINIKUBE_VERSION:-v1.27.0}

docs/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ FROM sphinxdoc/sphinx:5.3.0
33
RUN apt-get update && apt-get install -y wget git
44

55
# Note: Any golang version that can 'go list -m -f {{.Variable}}' is fine...
6-
ADD https://go.dev/dl/go1.22.11.linux-amd64.tar.gz /
6+
ADD https://go.dev/dl/go1.24.1.linux-amd64.tar.gz /
77

8-
RUN tar -C /usr/local -xzf /go1.22.11.linux-amd64.tar.gz && \
9-
rm /go1.22.11.linux-amd64.tar.gz
8+
RUN tar -C /usr/local -xzf /go1.24.1.linux-amd64.tar.gz && \
9+
rm /go1*.linux-amd64.tar.gz
1010

1111
ENV PATH=$PATH:/usr/local/go/bin
1212

docs/developers-guide/figures/arch-overview.svg

Lines changed: 0 additions & 70 deletions
This file was deleted.

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/intel/cri-resource-manager
22

3-
go 1.22.0
3+
go 1.24
44

55
require (
66
contrib.go.opencensus.io/exporter/jaeger v0.2.1

0 commit comments

Comments
 (0)