File tree Expand file tree Collapse file tree 5 files changed +16
-4
lines changed Expand file tree Collapse file tree 5 files changed +16
-4
lines changed Original file line number Diff line number Diff line change 48
48
- name : golangci-lint
49
49
uses : golangci/golangci-lint-action@4afd733a84b1f43292c63897423277bb7f4313a9
50
50
with :
51
- version : v2.1.6 # Also update GOLANGCI_VERSION variable in GNUmakefile when updating this version
51
+ version : v2.3.1 # Also update GOLANGCI_VERSION variable in GNUmakefile when updating this version
52
52
- name : actionlint
53
53
run : |
54
54
make tools
Original file line number Diff line number Diff line change 1
1
bin
2
2
bin-plugin
3
3
.vscode
4
+ .DS_Store
5
+ .idea
6
+ .windsurf
7
+ CLAUDE.md
8
+ .claude
9
+ * .env
10
+ * .bak
11
+ * .log
12
+ * .mdc
13
+ __debug_ *
14
+ * ~
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ CLI_DESTINATION=./bin/$(CLI_BINARY_NAME)
4
4
MANIFEST_FILE? =./bin/manifest.yml
5
5
WIN_MANIFEST_FILE? =./bin/manifest.windows.yml
6
6
7
- GOLANGCI_VERSION =v2.1.6 # Also update golangci-lint GH action in code-health.yml when updating this version
7
+ GOLANGCI_VERSION =v2.3.1 # Also update golangci-lint GH action in code-health.yml when updating this version
8
8
9
9
.PHONY : build
10
10
build : # # Generate the binary in ./bin
Original file line number Diff line number Diff line change 1
1
module github.com/mongodb-labs/atlas-cli-plugin-terraform
2
2
3
- go 1.24.1
3
+ go 1.24.6
4
4
5
5
require (
6
6
github.com/fsnotify/fsnotify v1.9.0
Original file line number Diff line number Diff line change 1
1
package e2e
2
2
3
3
import (
4
+ "context"
4
5
"os/exec"
5
6
"testing"
6
7
@@ -11,7 +12,7 @@ import (
11
12
12
13
func RunTF (args ... string ) (string , error ) {
13
14
args = append ([]string {"tf" }, args ... )
14
- cmd := exec .Command ( "atlas" , args ... )
15
+ cmd := exec .CommandContext ( context . Background (), "atlas" , args ... )
15
16
resp , err := cmd .CombinedOutput ()
16
17
return string (resp ), err
17
18
}
You can’t perform that action at this time.
0 commit comments