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:
|
inputs:
|
||||||
go-version:
|
go-version:
|
||||||
required: true
|
required: true
|
||||||
default: "1.23.7"
|
default: "1.23.8"
|
||||||
description: "Go version to install"
|
description: "Go version to install"
|
||||||
|
|
||||||
runs:
|
runs:
|
||||||
|
2
.github/workflows/api-release.yml
vendored
2
.github/workflows/api-release.yml
vendored
@ -6,7 +6,7 @@ on:
|
|||||||
name: API Release
|
name: API Release
|
||||||
|
|
||||||
env:
|
env:
|
||||||
GO_VERSION: "1.23.7"
|
GO_VERSION: "1.23.8"
|
||||||
|
|
||||||
permissions: # added using https://github.com/step-security/secure-workflows
|
permissions: # added using https://github.com/step-security/secure-workflows
|
||||||
contents: read
|
contents: read
|
||||||
|
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
@ -13,7 +13,7 @@ on:
|
|||||||
name: Release
|
name: Release
|
||||||
|
|
||||||
env:
|
env:
|
||||||
GO_VERSION: "1.23.7"
|
GO_VERSION: "1.23.8"
|
||||||
|
|
||||||
permissions: # added using https://github.com/step-security/secure-workflows
|
permissions: # added using https://github.com/step-security/secure-workflows
|
||||||
contents: read
|
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
|
# 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
|
ARG GOLANG_IMAGE=golang
|
||||||
|
|
||||||
FROM ${GOLANG_IMAGE}:${GOLANG_VERSION} AS golang
|
FROM ${GOLANG_IMAGE}:${GOLANG_VERSION} AS golang
|
||||||
|
Loading…
Reference in New Issue
Block a user