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 <akhilerm@gmail.com>
(cherry picked from commit 6f93c65f52c9e1c5e25595429fd50ce2e5da6843)
Signed-off-by: Derek McGowan <derek@mcg.dev>
This commit is contained in:
Akhil Mohan 2025-04-16 21:08:20 +05:30 committed by Derek McGowan
parent 4838f33f7e
commit 5bcf0a95e3
No known key found for this signature in database
GPG Key ID: F58C5D0A4405ACDB
4 changed files with 4 additions and 4 deletions

View File

@ -3,7 +3,7 @@ description: "Reusable action to install Go, so there is one place to bump Go ve
inputs:
go-version:
required: true
default: "1.23.7"
default: "1.23.8"
description: "Go version to install"
runs:

View File

@ -6,7 +6,7 @@ on:
name: API Release
env:
GO_VERSION: "1.23.7"
GO_VERSION: "1.23.8"
permissions: # added using https://github.com/step-security/secure-workflows
contents: read

View File

@ -13,7 +13,7 @@ on:
name: Release
env:
GO_VERSION: "1.23.7"
GO_VERSION: "1.23.8"
permissions: # added using https://github.com/step-security/secure-workflows
contents: read

View File

@ -34,7 +34,7 @@
# docker run --privileged --group-add keep-groups -v ./critest_exit_code.txt:/tmp/critest_exit_code.txt containerd-test
# ------------------------------------------------------------------------------
ARG GOLANG_VERSION=1.23.7
ARG GOLANG_VERSION=1.23.8
ARG GOLANG_IMAGE=golang
FROM ${GOLANG_IMAGE}:${GOLANG_VERSION} AS golang