ci: use Go 1.23

This commit is contained in:
Ayke van Laethem
2024-06-22 17:04:44 +02:00
committed by Ron Evans
parent b6c53a6f0e
commit 7e284a37fc
11 changed files with 29 additions and 21 deletions
+2 -2
View File
@@ -27,10 +27,10 @@ func NewConfig(options *compileopts.Options) (*compileopts.Config, error) {
if err != nil {
return nil, err
}
if major != 1 || minor < 19 || minor > 22 {
if major != 1 || minor < 19 || minor > 23 {
// Note: when this gets updated, also update the Go compatibility matrix:
// https://github.com/tinygo-org/tinygo-site/blob/dev/content/docs/reference/go-compat-matrix.md
return nil, fmt.Errorf("requires go version 1.19 through 1.22, got go%d.%d", major, minor)
return nil, fmt.Errorf("requires go version 1.19 through 1.23, got go%d.%d", major, minor)
}
return &compileopts.Config{