diff --git a/Makefile b/Makefile index c6ac993..171c265 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ # `test` below fail on the two packages that have no test files. deps-go builds # the missing tools in, so the vendored tree is self-sufficient. Keep the version # here in step with the `go` directive in go.mod. -GO_VERSION := 1.25.5 +GO_VERSION := 1.25.12 GO := $(shell pwd)/deps/go/go/bin/go export GOTOOLCHAIN := local GOFLAGS := @@ -73,7 +73,7 @@ run-web: build-web # builds them on demand, but `go test -coverprofile` calls covdata through # base.Tool(), which only stats pkg/tool and exits. So build them in once here. GO_TARBALL := go$(GO_VERSION).linux-amd64.tar.gz -GO_SHA256 := 9e9b755d63b36acf30c12a9a3fc379243714c1c6d3dd72861da637f336ebb35b +GO_SHA256 := 234828b7a89e0e303d2556310ee549fbcf253d28de937bac3da13d6294262ac1 deps-go: deps-sentinel @mkdir -p deps/go cd deps/go && curl -fLO 'https://go.dev/dl/$(GO_TARBALL)' diff --git a/go.mod b/go.mod index d6f5a10..41ad514 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/kami/maven -go 1.25.5 +go 1.25.12 require ( github.com/coder/websocket v1.8.12