diff --git a/.github/workflows/releases.yaml b/.github/workflows/releases.yaml index c1cf31b..ae4d8af 100644 --- a/.github/workflows/releases.yaml +++ b/.github/workflows/releases.yaml @@ -11,7 +11,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v1 with: - go-version: 1.20 + go-version: 1.22 id: go - name: Check out code into the Go module directory uses: actions/checkout@v2 diff --git a/Makefile b/Makefile index 8181796..39cbb8e 100644 --- a/Makefile +++ b/Makefile @@ -186,7 +186,7 @@ $(ENVTEST): $(LOCALBIN) .PHONY: golangci golangci: ## Run golangci - test -s $(LOCALBIN)/golangci-lint || GOBIN=$(LOCALBIN) go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest + test -s $(LOCALBIN)/golangci-lint || GOBIN=$(LOCALBIN) go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.57.2 .PHONY: crdoc crdoc: ## Run crdoc diff --git a/go.mod b/go.mod index 24285ac..e392f99 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/criteo/node-disruption-controller -go 1.20 +go 1.22 require ( github.com/onsi/ginkgo/v2 v2.9.5