Skip to content

Commit

Permalink
Downgrade go from 1.23 to 1.22
Browse files Browse the repository at this point in the history
  • Loading branch information
uriziv1 committed Sep 22, 2024
1 parent b4c53ad commit 486ef4f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/iso-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
fail-fast: false
matrix:
go: ["1.23"]
go: ["1.22"]
steps:
- uses: actions/setup-go@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion hack/Dockerfile-build-images
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 486ef4f

Please sign in to comment.