From 6b4fa848e2bcadfc783c4978f8035e9b696e59a5 Mon Sep 17 00:00:00 2001 From: crozzy Date: Mon, 24 Feb 2025 15:15:35 -0800 Subject: [PATCH] chore: update to go1.23 According to the Go Release policy Go 1.22 is no longer supported, and things coming down the pipe will rely on 1.23's iterator support. Signed-off-by: crozzy --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index bd677fda8..378c1c7e2 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/quay/claircore -go 1.22.0 +go 1.23.0 require ( github.com/Masterminds/semver v1.5.0