File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 32
32
- name : Lint Go
33
33
uses : golangci/golangci-lint-action@aaa42aa0628b4ae2578232a66b541047968fac86 # v6.1.0
34
34
with :
35
- version : v1.60.3 # renovate: datasource=github-tags depName=golangci/golangci-lint
35
+ version : v1.61.0 # renovate: datasource=github-tags depName=golangci/golangci-lint
36
36
37
37
actionlint :
38
38
name : Actionlint
Original file line number Diff line number Diff line change 30
30
- id : detect-private-key
31
31
32
32
- repo : https://github.com/golangci/golangci-lint
33
- rev : v1.60.3
33
+ rev : v1.61.0
34
34
hooks :
35
35
- id : golangci-lint-full
36
36
Original file line number Diff line number Diff line change 1
1
.DEFAULT_GOAL := build-goreleaser
2
2
# renovate: datasource=docker depName=golangci/golangci-lint
3
- GOLANGCI_LINT_VERSION = v1.60.3
3
+ GOLANGCI_LINT_VERSION = v1.61.0
4
4
# renovate: datasource=docker depName=goreleaser/goreleaser
5
5
GORELEASER_VERSION = v2.2.0
6
6
# renovate: datasource=go depName=google/go-licenses
Original file line number Diff line number Diff line change @@ -198,7 +198,7 @@ func (client *AWSClient) getInstancesInService(insIDtoIP map[string]string) ([]s
198
198
keys := reflect .ValueOf (insIDtoIP ).MapKeys ()
199
199
instanceIDs := make ([]string , len (keys ))
200
200
201
- for i := range len ( keys ) {
201
+ for i := range keys {
202
202
instanceIDs [i ] = keys [i ].String ()
203
203
}
204
204
You can’t perform that action at this time.
0 commit comments