File tree Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -19,17 +19,16 @@ jobs:
19
19
- name : lint
20
20
21
21
with :
22
- version : v1.46.2
22
+ version : v1.49.0
23
23
24
24
tests-on-unix :
25
25
needs : golangci-lint # run after golangci-lint action to not produce duplicated errors
26
26
runs-on : ubuntu-latest
27
27
strategy :
28
28
matrix :
29
29
golang :
30
- - 1.16
31
- - 1.17
32
30
- 1.18
31
+ - 1.19
33
32
steps :
34
33
- name : Checkout repository
35
34
uses : actions/checkout@v3
Original file line number Diff line number Diff line change 1
1
# A Self-Documenting Makefile: http://marmelab.com/blog/2016/02/29/auto-documented-makefile.html
2
2
3
3
SOURCE_FILES? =./...
4
- GOLANGCI_VERSION =v1.46.2
4
+ GOLANGCI_VERSION =v1.49.0
5
5
COVERAGE =coverage.out
6
6
7
7
export PATH := ./bin:$(PATH )
Original file line number Diff line number Diff line change 1
1
module github.com/mongodb-labs/cobra2snooty
2
2
3
- go 1.16
3
+ go 1.18
4
4
5
5
require (
6
6
github.com/spf13/cobra v1.5.0
7
7
github.com/spf13/pflag v1.0.5
8
8
)
9
+
10
+ require github.com/inconshreveable/mousetrap v1.0.0 // indirect
You can’t perform that action at this time.
0 commit comments