From aea62da10d4f4d953b0a2fff2e25d487ff665cb7 Mon Sep 17 00:00:00 2001 From: Thomas Schneider <qsx@chaotikum.eu> Date: Sun, 5 Jun 2022 19:04:37 +0200 Subject: [PATCH] go.mod: Use Go 1.17 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit golangci-lint doesn’t quite support 1.18 yet, and we don’t use any of the new features. --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index 307473b..9202866 100644 --- a/go.mod +++ b/go.mod @@ -1,5 +1,5 @@ module git.fsmpi.rwth-aachen.de/thomas/wsshit -go 1.18 +go 1.17 require github.com/gorilla/websocket v1.5.0 -- GitLab