diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 041fc4e..a8ac680 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ jobs: test: strategy: matrix: - version: [{go: '1.23.9', golangci: 'latest'}, {go: '1.24.3', golangci: 'latest'}] + version: [{go: '1.23.10', golangci: 'latest'}, {go: '1.24.4', golangci: 'latest'}] runs-on: ubuntu-latest env: GO111MODULE: on diff --git a/Makefile b/Makefile index d7d21aa..53054e1 100644 --- a/Makefile +++ b/Makefile @@ -17,7 +17,7 @@ GOSEC ?= $(GOBIN)/gosec GINKGO ?= $(GOBIN)/ginkgo GO_MINOR_VERSION = $(shell $(GO) version | cut -c 14- | cut -d' ' -f1 | cut -d'.' -f2) GOVULN_MIN_VERSION = 17 -GO_VERSION = 1.23 +GO_VERSION = 1.24 LDFLAGS = -ldflags "\ -X 'main.Version=$(shell git describe --tags --always)' \ -X 'main.GitTag=$(shell git describe --tags --abbrev=0)' \