From 2da50372981e60a122a2929a2c030eb85c5fd20f Mon Sep 17 00:00:00 2001 From: Ben Kochie Date: Fri, 31 May 2024 14:51:15 +0200 Subject: [PATCH] Return support for Go 1.20 (#645) Support the last three releases to match the versions supported by prometheus client_golang. Signed-off-by: SuperQ --- .circleci/config.yml | 2 ++ go.mod | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 018c8e1d..684eb154 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -46,6 +46,7 @@ workflows: matrix: parameters: go_version: + - "1.20" - "1.21" - "1.22" - test: @@ -55,5 +56,6 @@ workflows: matrix: parameters: go_version: + - "1.20" - "1.21" - "1.22" diff --git a/go.mod b/go.mod index af4361a8..6e9fd6f7 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/prometheus/procfs -go 1.21 +go 1.20 require ( github.com/google/go-cmp v0.6.0