Skip to content

Commit 77c656d

Browse files
author
Hen Schwartz
committed
ci(pvc): upgrade Go to 1.24 for pvcviewer-controller
- Update CI workflow pvcviewer_controller_unit_test.yaml to use go-version 1.24 - Update go.mod to go 1.24 - Update Dockerfile GOLANG_VERSION to 1.24 Fixes #723 Signed-off-by: Hen Schwartz <[email protected]>
1 parent 8c44fd7 commit 77c656d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/pvcviewer_controller_unit_test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Install Go
2020
uses: actions/setup-go@v5
2121
with:
22-
go-version: "1.22.2"
22+
go-version: "1.24"
2323
check-latest: true
2424

2525
- name: Run unit tests

components/pvcviewer-controller/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the manager binary
2-
ARG GOLANG_VERSION=1.22.2
2+
ARG GOLANG_VERSION=1.24
33
FROM golang:${GOLANG_VERSION} as builder
44

55
WORKDIR /workspace

components/pvcviewer-controller/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/kubeflow/kubeflow/components/pvc-viewer
22

3-
go 1.22.2
3+
go 1.24
44

55
require (
66
github.com/go-logr/logr v1.4.1

0 commit comments

Comments
 (0)