
- go1.23.7 (released 2025-03-04) includes security fixes to the net/http package, as well as bug fixes to cgo, the compiler, and the reflect, runtime, and syscall packages. See the Go 1.23.7 milestone on our issue tracker for details - go1.24.1 (released 2025-03-04) includes security fixes to the net/http package, as well as bug fixes to cgo, the compiler, the go command, and the reflect, runtime, and syscall packages. See the Go 1.24.1 milestone on our issue tracker for details. Signed-off-by: Akhil Mohan <akhilerm@gmail.com>
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.7"
|
|
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
|