Skip to content

Commit 6f93c65

Browse files
committed
use go1.23.8 as the default go version
use go1.23.8 as the default go version for running in CI and making release binaries. NOTE: This is done so that when release/2.1 branch cut happens the 2.1 release uses 1.23.x for building release binaries rather than 1.24.x. Once the 2.1 release is out, this will be reverted and go1.24.x will be made the default in the main branch Signed-off-by: Akhil Mohan <[email protected]>
1 parent 5629e9f commit 6f93c65

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/actions/install-go/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: "Reusable action to install Go, so there is one place to bump Go ve
33
inputs:
44
go-version:
55
required: true
6-
default: "1.24.2"
6+
default: "1.23.8"
77
description: "Go version to install"
88

99
runs:

.github/workflows/api-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
name: API Release
77

88
env:
9-
GO_VERSION: "1.24.2"
9+
GO_VERSION: "1.23.8"
1010

1111
permissions: # added using https://github.com/step-security/secure-workflows
1212
contents: read

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
name: Release
1414

1515
env:
16-
GO_VERSION: "1.24.2"
16+
GO_VERSION: "1.23.8"
1717

1818
permissions: # added using https://github.com/step-security/secure-workflows
1919
contents: read

contrib/Dockerfile.test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
# docker run --privileged --group-add keep-groups -v ./critest_exit_code.txt:/tmp/critest_exit_code.txt containerd-test
3535
# ------------------------------------------------------------------------------
3636

37-
ARG GOLANG_VERSION=1.24.2
37+
ARG GOLANG_VERSION=1.23.8
3838
ARG GOLANG_IMAGE=golang
3939

4040
FROM ${GOLANG_IMAGE}:${GOLANG_VERSION} AS golang

0 commit comments

Comments
 (0)