diff --git a/.github/workflows/code-health.yml b/.github/workflows/code-health.yml index 99fc210..33159a4 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@2226d7cb06a077cd73e56eedd38eecad18e5d837 with: - version: v1.63.4 # Also update GOLANGCI_VERSION variable in GNUmakefile when updating this version + version: v1.64.7 # Also update GOLANGCI_VERSION variable in GNUmakefile when updating this version - name: actionlint run: | make tools diff --git a/.golangci.yml b/.golangci.yml index df25fe0..db8910f 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -97,8 +97,8 @@ linters: - exhaustive - makezero - noctx - - tenv - testpackage + - usetesting run: timeout: 10m tests: true diff --git a/Makefile b/Makefile index 4ea7bce..124838b 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=v1.63.4 # Also update golangci-lint GH action in code-health.yml when updating this version +GOLANGCI_VERSION=v1.64.7 # 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 201df6b..8d60eeb 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/mongodb-labs/atlas-cli-plugin-terraform -go 1.23.6 +go 1.24.1 require ( github.com/fsnotify/fsnotify v1.8.0