ci: bump to go 1.23 (#453)
Upgrade to Go 1.23. Upgrade also requires bumping `golangci-lint` to v1.62.2, and upgrading third-party test versions for some failing cases.
This commit is contained in:
committed by
GitHub
parent
3b84ecd27b
commit
b985ff5775
@@ -143,7 +143,7 @@ func TypesTuplesEqual(a, b *types.Tuple) bool {
|
||||
return false
|
||||
}
|
||||
n := a.Len()
|
||||
for i := 0; i < n; i++ {
|
||||
for i := range n {
|
||||
if !TypesVarsEqual(a.At(i), b.At(i)) {
|
||||
return false
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user