From ac1b326ac0ae2f53411189133a884ade0649c05c Mon Sep 17 00:00:00 2001 From: Canelo Hill <172609632+canelohill@users.noreply.github.com> Date: Tue, 18 Jun 2024 22:40:57 -0600 Subject: [PATCH] Set min Go version to 1.20 (#930) Update go.mod and CI to Go version 1.20. --- .circleci/config.yml | 2 +- go.mod | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index ecb33f6..ebd12c1 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -67,4 +67,4 @@ workflows: - test: matrix: parameters: - version: ["1.18", "1.17", "1.16"] + version: ["1.22", "1.21", "1.20"] diff --git a/go.mod b/go.mod index 22d2668..dba1e22 100644 --- a/go.mod +++ b/go.mod @@ -1,7 +1,7 @@ module github.com/gorilla/websocket -go 1.12 +go 1.20 retract ( v1.5.2 // tag accidentally overwritten -) \ No newline at end of file +)