Skip to content

Commit

Permalink
minimum go version is now 1.23
Browse files Browse the repository at this point in the history
  • Loading branch information
sni committed Feb 25, 2025
1 parent f817a26 commit bea45a4
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/citest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:

# set go version for all steps
env:
GOVERSION: 1.22.x
GOVERSION: 1.23.x

jobs:
test:
Expand Down
1 change: 1 addition & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion buildtools/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module tools

go 1.22
go 1.23

require (
github.com/daixiang0/gci v0.12.3
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -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

Expand Down

0 comments on commit bea45a4

Please sign in to comment.