Keploy is still using now unsupported Go 1.24:
|
go 1.24.4 |
|
|
|
toolchain go1.24.6 |
The only compatibility issue (found in Homebrew/homebrew-core#258912) seem to be
which can be fixed by upgrading to
https://github.com/vitessio/vitess/releases/tag/v23.0.3 or later
which includes upstream:
Once that is fixed you can also upgrade all uses of actions/setup-go@v5:
|
uses: actions/setup-go@v5 |
|
with: |
|
go-version: ">=1.23" |
to
actions/setup-go@v6 to respect it via
Downstream Homebrew PR refs:
Keploy is still using now unsupported Go 1.24:
keploy/go.mod
Lines 3 to 5 in 88feef2
The only compatibility issue (found in Homebrew/homebrew-core#258912) seem to be
keploy/go.mod
Line 119 in 88feef2
which can be fixed by upgrading to https://github.com/vitessio/vitess/releases/tag/v23.0.3 or later
which includes upstream:
Once that is fixed you can also upgrade all uses of
actions/setup-go@v5:keploy/.github/workflows/release.yml
Lines 60 to 62 in 88feef2
to
actions/setup-go@v6to respect it viaDownstream Homebrew PR refs: