From bfb5fa1f97b51419bd1f57bbc52ae568c586db63 Mon Sep 17 00:00:00 2001 From: Raja Subramanian Date: Sat, 7 Sep 2024 16:29:12 +0530 Subject: [PATCH] Put go version at 1.22 (#2986) Not sure what is causing it to add the minor version and toolchain. Even now, with this, running `go mod tidy` makes those changes. `staticcheck` says invalid Go version. Manually setting it to 1.22. --- go.mod | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/go.mod b/go.mod index 09a15f7bc..0204d18bc 100644 --- a/go.mod +++ b/go.mod @@ -1,8 +1,6 @@ module github.com/livekit/livekit-server -go 1.22.0 - -toolchain go1.22.1 +go 1.22 require ( github.com/bep/debounce v1.2.1