Skip to content

Commit 2275311

Browse files
Update project to go 1.23 (#1424) (#1427)
Signed-off-by: David Kwon <[email protected]> Co-authored-by: Rohan Kumar <[email protected]>
1 parent 9ff4cee commit 2275311

File tree

7 files changed

+7
-9
lines changed

7 files changed

+7
-9
lines changed

.ci/oci.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# limitations under the License.
1414
#
1515

16-
FROM registry.ci.openshift.org/openshift/release:golang-1.22
16+
FROM registry.ci.openshift.org/openshift/release:golang-1.23
1717

1818
SHELL ["/bin/bash", "-c"]
1919

.github/workflows/code-coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
name: Set up Go 1.x
1515
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
1616
with:
17-
go-version: 1.22.10
17+
go-version: 1.23.6
1818
-
1919
name: Set up Python 3.11
2020
uses: actions/setup-python@b64ffcaf5b410884ad320a9cfac8866006a109aa # v4.8.0

.github/workflows/pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
name: Set up Go 1.x
1616
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
1717
with:
18-
go-version: 1.22.10
18+
go-version: 1.23.6
1919
-
2020
name: Set up Python 3.11
2121
uses: actions/setup-python@b64ffcaf5b410884ad320a9cfac8866006a109aa # v4.8.0

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Set up Go 1.x
2929
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
3030
with:
31-
go-version: 1.22.10
31+
go-version: 1.23.6
3232

3333
- name: Set up QEMU
3434
uses: docker/setup-qemu-action@2b82ce82d56a2a04d2637cd93a637ae1b359c0a7 #v2.2.0

build/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
#
1515

1616
# https://access.redhat.com/containers/?tab=tags#/registry.access.redhat.com/ubi9/go-toolset
17-
FROM registry.access.redhat.com/ubi9/go-toolset:9.5-1739267472 AS builder
17+
FROM registry.access.redhat.com/ubi9/go-toolset:1.23.6-1745328278 as builder
1818
ENV GOPATH=/go/
1919
USER root
2020
WORKDIR /devworkspace-operator

go.mod

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
module github.com/devfile/devworkspace-operator
22

3-
go 1.22
4-
5-
toolchain go1.22.0
3+
go 1.23.0
64

75
require (
86
github.com/devfile/api/v2 v2.2.2

project-clone/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
# Build the manager binary
1717
# https://access.redhat.com/containers/?tab=tags#/registry.access.redhat.com/ubi9/go-toolset
18-
FROM registry.access.redhat.com/ubi9/go-toolset:9.5-1739267472 as builder
18+
FROM registry.access.redhat.com/ubi9/go-toolset:1.23.6-1745328278 as builder
1919
ARG TARGETARCH
2020
ARG TARGETOS
2121
ENV GOPATH=/go/

0 commit comments

Comments
 (0)