From 2652b2cac5d997a94e9142f717eb20fe787835da Mon Sep 17 00:00:00 2001 From: James Rasell Date: Fri, 28 Feb 2025 16:09:40 +0100 Subject: [PATCH] build: Update Go to v1.24.0 (#1045) --- .go-version | 2 +- CHANGELOG.md | 2 +- GNUmakefile | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.go-version b/.go-version index ca8ec414..53cc1a6f 100644 --- a/.go-version +++ b/.go-version @@ -1 +1 @@ -1.23.5 +1.24.0 diff --git a/CHANGELOG.md b/CHANGELOG.md index 88b58f85..1b9e26b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ IMPROVEMENTS: -* build: Updated to Go 1.23.5 [[GH-1030](https://github.com/hashicorp/nomad-autoscaler/pull/1030)] +* build: Updated to Go 1.24.0 [[GH-1045](https://github.com/hashicorp/nomad-autoscaler/pull/1045)] ## 0.4.6 (December 12, 2024) diff --git a/GNUmakefile b/GNUmakefile index f2a18cc8..efab3679 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -45,9 +45,9 @@ test-tools: ## Install the tools used to run tests .PHONY: lint-tools lint-tools: ## Install the tools used to lint @echo "==> Installing lint tools..." - go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.61.0 - go install honnef.co/go/tools/cmd/staticcheck@2024.1.1 - go install github.com/hashicorp/go-hclog/hclogvet@v0.2.0 + go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.64.5 + go install honnef.co/go/tools/cmd/staticcheck@2025.1 + go install github.com/hashicorp/go-hclog/hclogvet@feaf6d2ec20fd895e711195c99e3fde93a68afc5 go install github.com/hashicorp/hcl/v2/cmd/hclfmt@d0c4fa8b0bbc2e4eeccd1ed2a32c2089ed8c5cf1 @echo "==> Done"