Skip to content

Commit 5bcf0a9

Browse files
akhilermdmcgowan
authored andcommitted
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. Signed-off-by: Akhil Mohan <[email protected]> (cherry picked from commit 6f93c65) Signed-off-by: Derek McGowan <[email protected]>
1 parent 4838f33 commit 5bcf0a9

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.23.7"
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.23.7"
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.23.7"
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.23.7
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)