Skip to content

Commit c4563c4

Browse files
authored
chore: Updates Go to 1.24.1 and linter (#32)
* update Go * update linter
1 parent 1238156 commit c4563c4

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/code-health.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
- name: golangci-lint
4949
uses: golangci/golangci-lint-action@2226d7cb06a077cd73e56eedd38eecad18e5d837
5050
with:
51-
version: v1.63.4 # Also update GOLANGCI_VERSION variable in GNUmakefile when updating this version
51+
version: v1.64.7 # Also update GOLANGCI_VERSION variable in GNUmakefile when updating this version
5252
- name: actionlint
5353
run: |
5454
make tools

.golangci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,8 @@ linters:
9797
- exhaustive
9898
- makezero
9999
- noctx
100-
- tenv
101100
- testpackage
101+
- usetesting
102102
run:
103103
timeout: 10m
104104
tests: true

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ CLI_DESTINATION=./bin/$(CLI_BINARY_NAME)
44
MANIFEST_FILE?=./bin/manifest.yml
55
WIN_MANIFEST_FILE?=./bin/manifest.windows.yml
66

7-
GOLANGCI_VERSION=v1.63.4 # Also update golangci-lint GH action in code-health.yml when updating this version
7+
GOLANGCI_VERSION=v1.64.7 # Also update golangci-lint GH action in code-health.yml when updating this version
88

99
.PHONY: build
1010
build: ## Generate the binary in ./bin

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/mongodb-labs/atlas-cli-plugin-terraform
22

3-
go 1.23.6
3+
go 1.24.1
44

55
require (
66
github.com/fsnotify/fsnotify v1.8.0

0 commit comments

Comments
 (0)