Skip to content

Commit 120f04c

Browse files
committed
add golang lint 1.24
1 parent 93fc649 commit 120f04c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/golangci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
strategy:
3535
fail-fast: false
3636
matrix:
37-
go-version: ['1.22.x', '1.23.x']
37+
go-version: ['1.22.x', '1.23.x', '1.24.x']
3838
os: [ubuntu-latest, windows-latest]
3939
name: Lint
4040
needs: generate
@@ -55,4 +55,4 @@ jobs:
5555
uses: golangci/golangci-lint-action@v6
5656
with:
5757
version: v1.61
58-
args: ${{ github.event_name == 'pull_request' && format('--new-from-rev=origin/{0}', github.base_ref) || '' }} --config=.golangci.yml --timeout=25m
58+
args: ${{ github.event_name == 'pull_request' && format('--new-from-rev=origin/{0}', github.base_ref) || '' }} --config=.golangci.yml --timeout=25m

go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ require (
1313
github.com/avast/retry-go/v4 v4.6.1
1414
github.com/billgraziano/dpapi v0.5.0
1515
github.com/containernetworking/cni v1.3.0
16-
github.com/evanphx/json-patch/v5 v5.9.0 // indirect
16+
github.com/evanphx/json-patch/v5 v5.9.11 // indirect
1717
github.com/go-logr/zapr v1.3.0
1818
github.com/golang/mock v1.6.0
1919
github.com/golang/protobuf v1.5.4
@@ -42,13 +42,13 @@ require (
4242
google.golang.org/protobuf v1.36.7
4343
gopkg.in/natefinch/lumberjack.v2 v2.2.1
4444
k8s.io/api v0.33.4
45-
k8s.io/apiextensions-apiserver v0.30.1
45+
k8s.io/apiextensions-apiserver v0.33.1
4646
k8s.io/apimachinery v0.33.4
4747
k8s.io/client-go v0.33.4
4848
k8s.io/klog v1.0.0
4949
k8s.io/klog/v2 v2.130.1
5050
k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738
51-
sigs.k8s.io/controller-runtime v0.18.4
51+
sigs.k8s.io/controller-runtime v0.21.0
5252
)
5353

5454
require (

0 commit comments

Comments
 (0)