mirror of
https://github.com/juanfont/headscale.git
synced 2026-09-10 02:31:59 +09:00
all: build with Go 1.27
Bump every remaining toolchain reference: images, goreleaser, the hi runner fallback and docs.
This commit is contained in:
committed by
Kristoffer Dalby
parent
d4d09bc024
commit
f06ff1cf81
+1
-1
@@ -55,7 +55,7 @@ changing.
|
||||
| `--timeout` | `120m` | Total test timeout. Use the built-in flag — never wrap with bash `timeout`. |
|
||||
| `--postgres` | `false` | Use PostgreSQL instead of SQLite |
|
||||
| `--failfast` | `true` | Stop on first test failure |
|
||||
| `--go-version` | auto | Detected from `go.mod` (currently 1.26.1) |
|
||||
| `--go-version` | auto | Detected from `go.mod` (currently 1.27.0) |
|
||||
| `--clean-before` | `true` | Clean stale (stopped/exited) containers before starting |
|
||||
| `--clean-after` | `true` | Clean this run's containers after completion |
|
||||
| `--keep-on-failure` | `false` | Preserve containers for manual inspection on failure |
|
||||
|
||||
+2
-2
@@ -71,7 +71,7 @@ func detectGoVersion() string {
|
||||
if err != nil {
|
||||
content, err = os.ReadFile(filepath.Join("..", "..", "go.mod"))
|
||||
if err != nil {
|
||||
return "1.26.1"
|
||||
return "1.27.0"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -83,5 +83,5 @@ func detectGoVersion() string {
|
||||
}
|
||||
}
|
||||
|
||||
return "1.26.1"
|
||||
return "1.27.0"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user