diff --git a/.github/workflows/code-health.yml b/.github/workflows/code-health.yml index 7dd1df6..92401e6 100644 --- a/.github/workflows/code-health.yml +++ b/.github/workflows/code-health.yml @@ -48,7 +48,7 @@ jobs: - name: golangci-lint uses: golangci/golangci-lint-action@4afd733a84b1f43292c63897423277bb7f4313a9 with: - version: v2.3.1 # Also update GOLANGCI_VERSION variable in GNUmakefile when updating this version + version: v2.4.0 # Also update GOLANGCI_VERSION variable in GNUmakefile when updating this version - name: actionlint run: | make tools diff --git a/Makefile b/Makefile index 3f502ab..436b1c0 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ CLI_DESTINATION=./bin/$(CLI_BINARY_NAME) MANIFEST_FILE?=./bin/manifest.yml WIN_MANIFEST_FILE?=./bin/manifest.windows.yml -GOLANGCI_VERSION=v2.3.1 # Also update golangci-lint GH action in code-health.yml when updating this version +GOLANGCI_VERSION=v2.4.0 # Also update golangci-lint GH action in code-health.yml when updating this version .PHONY: build build: ## Generate the binary in ./bin diff --git a/go.mod b/go.mod index 16a68f8..4195e8e 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/mongodb-labs/atlas-cli-plugin-terraform -go 1.24.6 +go 1.25.0 require ( github.com/fsnotify/fsnotify v1.9.0