
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>
17 lines
404 B
YAML
17 lines
404 B
YAML
name: "Setup Go"
|
|
description: "Reusable action to install Go, so there is one place to bump Go versions"
|
|
inputs:
|
|
go-version:
|
|
required: true
|
|
default: "1.23.8"
|
|
description: "Go version to install"
|
|
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- name: "Setup Go"
|
|
uses: actions/setup-go@v5
|
|
with:
|
|
go-version: ${{ inputs.go-version }}
|
|
cache: false # see actions/setup-go#368
|