File tree 4 files changed +7
-2
lines changed 4 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -66,6 +66,6 @@ issues:
66
66
# golangci.com configuration
67
67
# https://github.com/golangci/golangci/wiki/Configuration
68
68
service :
69
- golangci-lint-version : 1.22 .x # use the fixed version to not introduce new linters unexpectedly
69
+ golangci-lint-version : 1.19 .x # use the fixed version to not introduce new linters unexpectedly
70
70
prepare :
71
71
- echo "here I can run custom commands, but no preparation needed for this repo"
Original file line number Diff line number Diff line change 5
5
require (
6
6
github.com/Microsoft/go-winio v0.4.14
7
7
github.com/ThomasRooney/gexpect v0.0.0-20161231170123-5482f0350944
8
+ github.com/asaskevich/govalidator v0.0.0-20200108200545-475eaeb16496 // indirect
8
9
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e
9
10
github.com/icrowley/fake v0.0.0-20180203215853-4178557ae428
10
11
github.com/manifoldco/promptui v0.3.1
Original file line number Diff line number Diff line change @@ -36,6 +36,8 @@ github.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6/go.mod h1:grANhF5
36
36
github.com/asaskevich/govalidator v0.0.0-20180315120708-ccb8e960c48f /go.mod h1:lB+ZfQJz7igIIfQNfa7Ml4HSf2uFQQRzpGGRXenZAgY =
37
37
github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a h1:idn718Q4B6AGu/h5Sxe66HYVdqdGu2l9Iebqhi/AEoA =
38
38
github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a /go.mod h1:lB+ZfQJz7igIIfQNfa7Ml4HSf2uFQQRzpGGRXenZAgY =
39
+ github.com/asaskevich/govalidator v0.0.0-20200108200545-475eaeb16496 h1:zV3ejI06GQ59hwDQAvmK1qxOQGB3WuVTRoY0okPTAv0 =
40
+ github.com/asaskevich/govalidator v0.0.0-20200108200545-475eaeb16496 /go.mod h1:oGkLhpf+kjZl6xBf758TQhh5XrAeiJv/7FRz/2spLIg =
39
41
github.com/aws/aws-sdk-go v1.19.18 /go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN924inxo =
40
42
github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973 /go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q =
41
43
github.com/beorn7/perks v1.0.0 h1:HWo1m869IqiPhD389kmkxeTalrjNbbJTC8LXupb+sl0 =
@@ -352,6 +354,7 @@ github.com/mattn/go-colorable v0.1.4 h1:snbPLB8fVfU9iwbbo30TPtbLRzwWu6aJS6Xh4eaa
352
354
github.com/mattn/go-colorable v0.1.4 /go.mod h1:U0ppj6V5qS13XJ6of8GYAs25YV2eR4EVcfRqFIhoBtE =
353
355
github.com/mattn/go-isatty v0.0.3 /go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4 =
354
356
github.com/mattn/go-isatty v0.0.4 /go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4 =
357
+ github.com/mattn/go-isatty v0.0.8 h1:HLtExJ+uU2HOZ+wI0Tt5DtUDrx8yhUqDcp7fYERX4CE =
355
358
github.com/mattn/go-isatty v0.0.8 /go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s =
356
359
github.com/mattn/go-isatty v0.0.10 h1:qxFzApOv4WsAL965uUPIsXzAKCZxN2p9UqdhFS4ZW10 =
357
360
github.com/mattn/go-isatty v0.0.10 /go.mod h1:qgIWMr58cqv1PHHyhnkY9lrL7etaEgOFcMEpPG5Rm84 =
Original file line number Diff line number Diff line change @@ -15,7 +15,8 @@ OUTPUT_ROOT=output/
15
15
# ########################################
16
16
17
17
bootstra% :
18
- $Q curl -sSfL https://raw.githubusercontent.com/smallstep/cli/master/make/golangci-install.sh | sh -s -- -b $(shell go env GOPATH) /bin v1.22.2
18
+ # Using a released version of golangci-lint to take into account custom replacements in their go.mod
19
+ $Q curl -sSfL https://raw.githubusercontent.com/smallstep/cli/master/make/golangci-install.sh | sh -s -- -b $(shell go env GOPATH) /bin v1.19.1
19
20
20
21
.PHONY : bootstra%
21
22
You can’t perform that action at this time.
0 commit comments