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:
parent
4838f33f7e
commit
5bcf0a95e3
2
.github/actions/install-go/action.yml
vendored
2
.github/actions/install-go/action.yml
vendored
@ -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:
|
||||
|
2
.github/workflows/api-release.yml
vendored
2
.github/workflows/api-release.yml
vendored
@ -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
|
||||
|
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user