From bea45a45e8a850eb4ffe0db699e0b5bad97110fc Mon Sep 17 00:00:00 2001 From: Sven Nierlein Date: Tue, 25 Feb 2025 13:51:39 +0100 Subject: [PATCH] minimum go version is now 1.23 --- .github/workflows/citest.yml | 2 +- Changes | 1 + Makefile | 4 ++-- buildtools/go.mod | 2 +- go.mod | 2 +- 5 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/citest.yml b/.github/workflows/citest.yml index e01b111..5341072 100644 --- a/.github/workflows/citest.yml +++ b/.github/workflows/citest.yml @@ -5,7 +5,7 @@ on: # set go version for all steps env: - GOVERSION: 1.22.x + GOVERSION: 1.23.x jobs: test: diff --git a/Changes b/Changes index 141d8e3..d5f0bf8 100644 --- a/Changes +++ b/Changes @@ -2,6 +2,7 @@ This file documents the revision history for check_nsc_web next: - update dependencies + - minimum go version is now 1.23 0.7.2 Thu Mar 21 17:14:07 CET 2024 - minimum go version is now 1.22 diff --git a/Makefile b/Makefile index 405e7f8..62a0503 100644 --- a/Makefile +++ b/Makefile @@ -9,8 +9,8 @@ GOVERSION:=$(shell \ ) # also update .github/workflows/citest.yml when changing minumum version # find . -name go.mod -MINGOVERSION:=00010022 -MINGOVERSIONSTR:=1.22 +MINGOVERSION:=00010023 +MINGOVERSIONSTR:=1.23 BUILD:=$(shell git rev-parse --short HEAD) REVISION:=$(shell printf "%04d" $$( git rev-list --all --count)) # see https://github.com/go-modules-by-example/index/blob/master/010_tools/README.md diff --git a/buildtools/go.mod b/buildtools/go.mod index ce5a468..dae1877 100644 --- a/buildtools/go.mod +++ b/buildtools/go.mod @@ -1,6 +1,6 @@ module tools -go 1.22 +go 1.23 require ( github.com/daixiang0/gci v0.12.3 diff --git a/go.mod b/go.mod index ecf1970..90600fb 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/consol-monitoring/check_nsc_web -go 1.22 +go 1.23 require github.com/stretchr/testify v1.10.0