chore: update go version

This commit is contained in:
Kevin Franklin Kim 2025-05-26 22:05:49 +02:00
parent d1cd97e228
commit 0e085227bf
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
version: "2"
run:
go: 1.23.0
go: 1.24.1
build-tags: [ safe ]
modules-download-mode: readonly
linters:

View File

@ -21,7 +21,7 @@ func waitFor(addr string) {
}
func httpGet(url string) string {
resp, err := http.Get(url) //nolint:gosec
resp, err := http.Get(url) //nolint:gosec,noctx
if err != nil {
panic(err.Error())
}