From d5086075fe2c91cfd8440bb78eff8ff787fb70a8 Mon Sep 17 00:00:00 2001 From: SuperQ Date: Thu, 30 May 2024 06:17:04 +0200 Subject: [PATCH] Return support for Go 1.20 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