diff --git a/.github/workflows/pvcviewer_controller_unit_test.yaml b/.github/workflows/pvcviewer_controller_unit_test.yaml index d088e395f..8f277057e 100644 --- a/.github/workflows/pvcviewer_controller_unit_test.yaml +++ b/.github/workflows/pvcviewer_controller_unit_test.yaml @@ -19,7 +19,7 @@ jobs: - name: Install Go uses: actions/setup-go@v5 with: - go-version: "1.22.2" + go-version: "1.24" check-latest: true - name: Run unit tests diff --git a/components/pvcviewer-controller/Dockerfile b/components/pvcviewer-controller/Dockerfile index d0b2fecd9..0090cb102 100644 --- a/components/pvcviewer-controller/Dockerfile +++ b/components/pvcviewer-controller/Dockerfile @@ -1,5 +1,5 @@ # Build the manager binary -ARG GOLANG_VERSION=1.22.2 +ARG GOLANG_VERSION=1.24 FROM golang:${GOLANG_VERSION} as builder WORKDIR /workspace diff --git a/components/pvcviewer-controller/go.mod b/components/pvcviewer-controller/go.mod index bf7f53b9d..198ddbe7e 100644 --- a/components/pvcviewer-controller/go.mod +++ b/components/pvcviewer-controller/go.mod @@ -1,6 +1,6 @@ module github.com/kubeflow/kubeflow/components/pvc-viewer -go 1.22.2 +go 1.24 require ( github.com/go-logr/logr v1.4.1