diff --git a/.github/workflows/iso-ci.yaml b/.github/workflows/iso-ci.yaml index b0b775f..553534b 100644 --- a/.github/workflows/iso-ci.yaml +++ b/.github/workflows/iso-ci.yaml @@ -17,7 +17,7 @@ jobs: strategy: fail-fast: false matrix: - go: ["1.23"] + go: ["1.22"] steps: - uses: actions/setup-go@v5 with: diff --git a/Dockerfile b/Dockerfile index 2375c28..c4b05c8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Build the manager binary -FROM --platform=$BUILDPLATFORM golang:1.23 AS builder +FROM --platform=$BUILDPLATFORM golang:1.22 AS builder WORKDIR /workspace diff --git a/go.mod b/go.mod index 2cbddf7..3797917 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/IBM/ibm-storage-odf-operator -go 1.23.0 +go 1.22.0 require ( github.com/go-logr/logr v1.4.2 diff --git a/hack/Dockerfile-build-images b/hack/Dockerfile-build-images index b1b8bbd..bc18cc1 100644 --- a/hack/Dockerfile-build-images +++ b/hack/Dockerfile-build-images @@ -1,4 +1,4 @@ -FROM golang:1.23 +FROM golang:1.22 RUN apt-get update && apt-get upgrade -y RUN apt-get install git glibc-source -y