From 4b2af13020b1c6ef1c44fd4cbfb84c1718440b12 Mon Sep 17 00:00:00 2001 From: Archana Sawant Date: Mon, 8 Jul 2024 04:03:08 +0530 Subject: [PATCH] Bump Go version to 1.22.5 (#400) Signed-off-by: archups --- .prow/postsubmits.yaml | 4 ++-- .prow/verify.yaml | 18 +++++++++--------- Dockerfile | 2 +- Makefile | 2 +- hack/update-codegen.sh | 2 +- hack/update-crds-openapi.sh | 2 +- hack/verify-licenses.sh | 2 +- 7 files changed, 16 insertions(+), 16 deletions(-) diff --git a/.prow/postsubmits.yaml b/.prow/postsubmits.yaml index faac0955..e35a8305 100644 --- a/.prow/postsubmits.yaml +++ b/.prow/postsubmits.yaml @@ -26,7 +26,7 @@ postsubmits: preset-goproxy: "true" spec: containers: - - image: quay.io/kubermatic/build:go-1.22-node-20-kind-0.23-9 + - image: quay.io/kubermatic/build:go-1.22-node-20-kind-0.23-11 command: - /bin/bash - -c @@ -53,7 +53,7 @@ postsubmits: preset-goproxy: "true" spec: containers: - - image: quay.io/kubermatic/build:go-1.22-node-20-kind-0.23-9 + - image: quay.io/kubermatic/build:go-1.22-node-20-kind-0.23-11 command: - "./hack/ci/upload-gocache.sh" resources: diff --git a/.prow/verify.yaml b/.prow/verify.yaml index f2b06500..23f04389 100644 --- a/.prow/verify.yaml +++ b/.prow/verify.yaml @@ -21,7 +21,7 @@ presubmits: preset-goproxy: "true" spec: containers: - - image: quay.io/kubermatic/build:go-1.22-node-20-9 + - image: quay.io/kubermatic/build:go-1.22-node-20-11 command: - make args: @@ -36,7 +36,7 @@ presubmits: preset-goproxy: "true" spec: containers: - - image: quay.io/kubermatic/build:go-1.22-node-20-9 + - image: quay.io/kubermatic/build:go-1.22-node-20-11 command: - make args: @@ -58,7 +58,7 @@ presubmits: preset-goproxy: "true" spec: containers: - - image: quay.io/kubermatic/build:go-1.22-node-20-9 + - image: quay.io/kubermatic/build:go-1.22-node-20-11 command: - make args: @@ -79,7 +79,7 @@ presubmits: preset-goproxy: "true" spec: containers: - - image: quay.io/kubermatic/build:go-1.22-node-20-9 + - image: quay.io/kubermatic/build:go-1.22-node-20-11 command: - ./hack/verify-licenses.sh resources: @@ -95,7 +95,7 @@ presubmits: preset-goproxy: "true" spec: containers: - - image: quay.io/kubermatic/build:go-1.22-node-20-9 + - image: quay.io/kubermatic/build:go-1.22-node-20-11 command: - make args: @@ -115,7 +115,7 @@ presubmits: preset-goproxy: "true" spec: containers: - - image: quay.io/kubermatic/build:go-1.22-node-20-9 + - image: quay.io/kubermatic/build:go-1.22-node-20-11 command: - make args: @@ -130,7 +130,7 @@ presubmits: clone_uri: "ssh://git@github.com/kubermatic/operating-system-manager.git" spec: containers: - - image: quay.io/kubermatic/build:go-1.22-node-20-9 + - image: quay.io/kubermatic/build:go-1.22-node-20-11 command: - shfmt args: @@ -161,7 +161,7 @@ presubmits: preset-goproxy: "true" spec: containers: - - image: quay.io/kubermatic/build:go-1.22-node-20-9 + - image: quay.io/kubermatic/build:go-1.22-node-20-11 command: - make args: @@ -182,7 +182,7 @@ presubmits: preset-goproxy: "true" spec: containers: - - image: quay.io/kubermatic/build:go-1.22-node-20-kind-0.23-9 + - image: quay.io/kubermatic/build:go-1.22-node-20-kind-0.23-11 command: - "./hack/ci/run-e2e-tests.sh" resources: diff --git a/Dockerfile b/Dockerfile index dba9630f..f82b9a50 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -ARG GO_VERSION=1.22.4 +ARG GO_VERSION=1.22.5 FROM golang:${GO_VERSION} AS builder WORKDIR /go/src/k8c.io/operating-system-manager COPY . . diff --git a/Makefile b/Makefile index 521a5531..8dbd1640 100644 --- a/Makefile +++ b/Makefile @@ -21,7 +21,7 @@ export GO111MODULE=on export GOFLAGS?=-mod=readonly -trimpath export GIT_TAG ?= $(shell git tag --points-at HEAD) -GO_VERSION = 1.22.4 +GO_VERSION = 1.22.5 CMD = $(notdir $(wildcard ./cmd/*)) BUILD_DEST ?= _build diff --git a/hack/update-codegen.sh b/hack/update-codegen.sh index e5048248..e45f9eb8 100755 --- a/hack/update-codegen.sh +++ b/hack/update-codegen.sh @@ -19,7 +19,7 @@ set -euo pipefail cd $(dirname $0)/.. source hack/lib.sh -CONTAINERIZE_IMAGE=quay.io/kubermatic/build:go-1.22-node-20-9 containerize ./hack/update-codegen.sh +CONTAINERIZE_IMAGE=quay.io/kubermatic/build:go-1.22-node-20-11 containerize ./hack/update-codegen.sh SCRIPT_ROOT=$(dirname "${BASH_SOURCE}") sed="sed" diff --git a/hack/update-crds-openapi.sh b/hack/update-crds-openapi.sh index ad9c42a3..51fa4735 100755 --- a/hack/update-crds-openapi.sh +++ b/hack/update-crds-openapi.sh @@ -19,7 +19,7 @@ set -euo pipefail cd $(dirname $0)/.. source hack/lib.sh -CONTAINERIZE_IMAGE=quay.io/kubermatic/build:go-1.22-node-20-9 containerize ./hack/update-crds-openapi.sh +CONTAINERIZE_IMAGE=quay.io/kubermatic/build:go-1.22-node-20-11 containerize ./hack/update-crds-openapi.sh SCRIPT_ROOT=$(dirname "${BASH_SOURCE}") echodate "Creating vendor directory" diff --git a/hack/verify-licenses.sh b/hack/verify-licenses.sh index 0d45aa10..0fca7f5f 100755 --- a/hack/verify-licenses.sh +++ b/hack/verify-licenses.sh @@ -19,7 +19,7 @@ set -euo pipefail cd $(dirname $0)/.. source hack/lib.sh -CONTAINERIZE_IMAGE=quay.io/kubermatic/build:go-1.22-node-20-9 containerize ./hack/verify-licenses.sh +CONTAINERIZE_IMAGE=quay.io/kubermatic/build:go-1.22-node-20-11 containerize ./hack/verify-licenses.sh go mod vendor