Skip to content

Commit 23df9d2

Browse files
committed
Addressing linter issue
1 parent 8d953a1 commit 23df9d2

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/go.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818
platform: [ ubuntu-20.04 ]
1919
runs-on: ${{ matrix.platform }}
2020
steps:
21-
- name: Set up Go 1.23.0
21+
- name: Set up Go 1.23.8
2222
uses: actions/setup-go@v4
2323
with:
24-
go-version: '1.23.0'
24+
go-version: '1.23.8'
2525
- name: Check-out code
2626
uses: actions/checkout@v3
2727
- name: Run golangci-lint

ako-clean/cleanup.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ func setCloudName() error {
135135
return err
136136
}
137137
if len(response.Results) == 0 {
138-
return fmt.Errorf(SEGroupNotFoundError)
138+
return fmt.Errorf("%s", SEGroupNotFoundError)
139139
}
140140
cloudName := strings.Split(*response.Results[0].CloudRef, "#")[1]
141141
utils.SetCloudName(cloudName)

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/vmware/load-balancer-and-ingress-services-for-kubernetes
22

3-
go 1.23.0
3+
go 1.23.8
44

55
toolchain go1.24.1
66

0 commit comments

Comments
 (0)