Skip to content

Commit c54fa97

Browse files
author
Lucas Yoon
committed
go 1.23
Signed-off-by: Lucas Yoon <[email protected]>
1 parent 8497d24 commit c54fa97

File tree

12 files changed

+12
-12
lines changed

12 files changed

+12
-12
lines changed

.ci/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
15-
FROM golang:1.24-alpine@sha256:daae04ebad0c21149979cd8e9db38f565ecefd8547cf4a591240dc1972cf1399 AS builder
15+
FROM golang:1.23-alpine AS builder
1616

1717
# Allows for the proper yq to be downloaded
1818
# This arg is automatically set if the dockerfile is built with --platform flag

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ on:
2121
branches: [main]
2222

2323
env:
24-
GO_VERSION: 1.24
24+
GO_VERSION: 1.23
2525
OAPI_CODEGEN_VERSION: v1.12.4
2626

2727
jobs:

.github/workflows/codecov.yaml

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.24
31+
go-version: 1.23
3232
- name: Run tests
3333
run: cd index/server && go test ./... -coverprofile cover.out
3434
- name: Codecov

.github/workflows/pushimage-next.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: Setup Go environment
3131
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
3232
with:
33-
go-version: 1.24
33+
go-version: 1.23
3434
- name: Set up QEMU # Enables arm64 image building
3535
uses: docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3 #v3.0.0
3636
- name: Login to Quay

README.md

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

33
<div id="header">
44

5-
![Go](https://img.shields.io/badge/Go-1.24-blue)
5+
![Go](https://img.shields.io/badge/Go-1.23-blue)
66
[![Apache2.0 License](https://img.shields.io/badge/license-Apache2.0-brightgreen.svg)](LICENSE)
77
[![OpenSSF Best Practices](https://www.bestpractices.dev/projects/8257/badge)](https://www.bestpractices.dev/projects/8257)
88
[![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/devfile/registry-support/badge)](https://securityscorecards.dev/viewer/?uri=github.com/devfile/registry-support)

index/generator/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-support/index/generator
22

3-
go 1.24
3+
go 1.23
44

55
require (
66
github.com/devfile/api/v2 v2.3.0

index/server/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

1616
# Index Server build stage
17-
FROM registry.access.redhat.com/ubi9/go-toolset:1.24.4-1754467841 AS index-builder
17+
FROM registry.access.redhat.com/ubi9/go-toolset:1.23.9-1751538372 AS index-builder
1818
USER root
1919
WORKDIR /tools
2020
COPY . .

index/server/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-support/index/server
22

3-
go 1.24
3+
go 1.23
44

55
require (
66
github.com/deepmap/oapi-codegen v1.12.4

oci-registry/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
15-
FROM registry.access.redhat.com/ubi9/go-toolset:1.24.4-1754467841 as registry
15+
FROM registry.access.redhat.com/ubi9/go-toolset:1.23.9-1751538372 as registry
1616
ARG PKG="github.com/docker/distribution"
1717
ARG PKG_VERSION="v2.8.3"
1818
ENV GOPATH=/go

registry-library/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-support/registry-library
22

3-
go 1.24
3+
go 1.23
44

55
require (
66
github.com/containerd/containerd v1.7.13

0 commit comments

Comments
 (0)