Skip to content

Commit 061114d

Browse files
author
Lucas Yoon
committed
updating go version to 1.24
Signed-off-by: Lucas Yoon <[email protected]>
1 parent d9471e7 commit 061114d

File tree

12 files changed

+14
-14
lines changed

12 files changed

+14
-14
lines changed

.ci/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# limitations under the License.
1515
ARG BASE_IMAGE=quay.io/devfile/devfile-index-base:next
1616

17-
FROM registry.access.redhat.com/ubi8/go-toolset:1.23 AS builder
17+
FROM registry.access.redhat.com/ubi8/go-toolset:1.24.4-1754328509 AS builder
1818

1919
# Set user as root
2020
USER root

.ci/Dockerfile.offline

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# limitations under the License.
1515
ARG BASE_IMAGE=quay.io/devfile/devfile-index-base:next
1616

17-
FROM registry.access.redhat.com/ubi8/go-toolset:1.23 AS builder
17+
FROM registry.access.redhat.com/ubi8/go-toolset:1.24.4-1754328509 AS builder
1818

1919
# Set user as root
2020
USER root

.ci/openshift_integration.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ curl -sL https://developers.redhat.com/content-gateway/rest/mirror/pub/openshift
5151
export GLOBALODOCONFIG=$(pwd)/preferences.yaml
5252

5353
# Download & Install Ginkgo
54-
GINKGO_VERSION="$(cd $BASE_DIR/tests/odov3 && go list -m -mod=readonly -json all | ${YQ_PATH} 'select(.Path == "github.com/onsi/ginkgo/v2") | .Version' -Mr -p=json)"
55-
go install -mod=readonly github.com/onsi/ginkgo/v2/ginkgo@${GINKGO_VERSION}
54+
GINKGO_VERSION=${GINKGO_VERSION:-v2.13.0}
55+
go install github.com/onsi/ginkgo/v2/ginkgo@${GINKGO_VERSION}
5656

5757
# Install the devfile registry
5858
oc process -f $BASE_DIR/.ci/deploy/devfile-registry.yaml -p DEVFILE_INDEX_IMAGE=$IMG -p IMAGE_TAG=$TAG -p REPLICAS=3 -p ANALYTICS_WRITE_KEY= | \

.devfile.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ components:
4343
# Alternatively could be removed once https://github.com/redhat-developer/odo/issues/7162 is resolved
4444
- name: index-generator
4545
container:
46-
image: registry.access.redhat.com/ubi8/go-toolset:1.23.6-4
46+
image: registry.access.redhat.com/ubi8/go-toolset:1.24.4-1754328509
4747
# Devfile Registry Deployment resource
4848
- name: devfile-registry-deployment
4949
kubernetes:

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- name: Setup Go environment
3737
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0
3838
with:
39-
go-version: 1.23
39+
go-version: 1.24
4040
- name: Set up QEMU # Enables arm64 image building
4141
uses: docker/setup-qemu-action@8b562efa09ec1557a9e26f25a7c6292838acea94
4242

.github/workflows/pushimge-next.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
- name: Setup Go environment
4242
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0
4343
with:
44-
go-version: 1.23
44+
go-version: 1.24
4545
- name: Set up QEMU # Enables arm64 image building
4646
uses: docker/setup-qemu-action@8b562efa09ec1557a9e26f25a7c6292838acea94
4747
- name: Login to Quay

.github/workflows/validate-samples.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
- name: Install Go
4545
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0
4646
with:
47-
go-version: "1.23"
47+
go-version: "1.24"
4848

4949
- name: Install Ginkgo
5050
run: go install -mod=mod github.com/onsi/ginkgo/v2/[email protected]

.github/workflows/validate-stacks.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
- name: Install Go
4747
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0
4848
with:
49-
go-version: "1.23"
49+
go-version: "1.24"
5050

5151
- name: Install Ginkgo
5252
run: go install -mod=mod github.com/onsi/ginkgo/v2/[email protected]
@@ -163,7 +163,7 @@ jobs:
163163
- name: Install Go
164164
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0
165165
with:
166-
go-version: "1.23"
166+
go-version: "1.24"
167167

168168
- name: Install odo latest version v3
169169
uses: redhat-actions/openshift-tools-installer@2de9a80cf012ad0601021515481d433b91ef8fd5 # v1

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The public registry is updated weekly, by 12pm EST Wednesdays, with any updated
66

77
## Registry Status
88

9-
![Go](https://img.shields.io/badge/Go-1.23-blue)
9+
![Go](https://img.shields.io/badge/Go-1.24-blue)
1010
[![Validate Devfile stacks](https://github.com/devfile/registry/actions/workflows/validate-stacks.yaml/badge.svg?event=schedule)](https://github.com/devfile/registry/actions/workflows/validate-stacks.yaml)
1111
[![Renovate][1]][2]
1212

tests/check_non_terminating/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/devfile/registry/tests/check_non_terminating
22

3-
go 1.23
3+
go 1.24
44

55
require github.com/devfile/library/v2 v2.3.0
66

0 commit comments

Comments
 (0)