Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ CAAPH_VERSION ?= "v0.2.1"
CAPL_VERSION ?= "v0.8.5"

# renovate: datasource=github-tags depName=golangci/golangci-lint
GOLANGCI_LINT_VERSION ?= "v2.7.2"
GOLANGCI_LINT_VERSION ?= "v2.11.3"

CONTROLPLANE_NODES ?= 1
WORKER_NODES ?= 1
Expand Down
2 changes: 1 addition & 1 deletion cloud/linode/fake_linode_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,7 @@ func (f *fakeAPI) setupRoutes() {
f.t.Fatal(err)
}

subnets := []linodego.VPCSubnet{}
subnets := make([]linodego.VPCSubnet, 0, len(vco.Subnets))
for _, s := range vco.Subnets {
subnet := linodego.VPCSubnet{
ID: rand.Intn(9999),
Expand Down
Loading