You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Setup go version spec 1.24rc1
Attempting to download 1.24rc1...
matching 1.24rc1...
Not found in manifest. Falling back to download directly from Go
Error: Unable to find Go version '1.24rc1' for platform linux and architecture x64.
The text was updated successfully, but these errors were encountered:
Hi @sonatard 👋,
The action uses SemVer notation for go-version input. Therefore, you need to specify the version as 1.24.0-rc.1 instead of 1.24rc1. Please update your workflow file to use the correct format:
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5with:
go-version: '1.24.0-rc.1'
- run: go version
For more details on the supported version syntax, you can refer to the setup-go documentation.
Description:
I noticed that 1.24rc1 is not included in the manifest. Do you plan to support release candidates (RC) in the future?
https://github.com/actions/go-versions/blob/d75291c5c1691442f1a70c1d8a21cd1a044e1bde/versions-manifest.json
Action version:
v5
Platform:
Runner type:
Tools version:
Go 1.24rc1
Repro steps:
Expected behavior:
no error
Actual behavior:
The text was updated successfully, but these errors were encountered: