Skip to content

Commit af6c3f6

Browse files
authored
build(deps): bump gopkg.in/k8snetworkplumbingwg/multus-cni.v4 (#5096)
Bumps gopkg.in/k8snetworkplumbingwg/multus-cni.v4 from 4.1.4 to 4.2.0. Signed-off-by: zhangzujian <[email protected]>
1 parent 339df02 commit af6c3f6

File tree

5 files changed

+57
-55
lines changed

5 files changed

+57
-55
lines changed

.github/workflows/build-windows.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ concurrency:
2323

2424
env:
2525
GO_VERSION: ''
26-
GOSEC_VERSION: '2.22.0'
26+
GOSEC_VERSION: '2.22.2'
2727

2828
jobs:
2929
filter:

.github/workflows/build-x86-image.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ concurrency:
2222

2323
env:
2424
KIND_VERSION: v0.27.0
25-
GOLANGCI_LINT_VERSION: 'v1.64.7'
25+
GOLANGCI_LINT_VERSION: 'v1.64.8'
2626
HELM_VERSION: v3.17.2
2727
SUBMARINER_VERSION: '0.19.3'
2828

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ FRR_IMAGE = quay.io/frrouting/frr:$(FRR_VERSION)
3232

3333
CLAB_IMAGE = ghcr.io/srl-labs/clab:0.66.0
3434

35-
MULTUS_VERSION = v4.1.4
35+
MULTUS_VERSION = v4.2.0
3636
MULTUS_IMAGE = ghcr.io/k8snetworkplumbingwg/multus-cni:$(MULTUS_VERSION)-thick
3737
MULTUS_YAML = https://raw.githubusercontent.com/k8snetworkplumbingwg/multus-cni/$(MULTUS_VERSION)/deployments/multus-daemonset-thick.yml
3838

@@ -50,7 +50,7 @@ KUBEVIRT_LAUNCHER_IMAGE = quay.io/kubevirt/virt-launcher:$(KUBEVIRT_VERSION)
5050
KUBEVIRT_OPERATOR_YAML = https://github.com/kubevirt/kubevirt/releases/download/$(KUBEVIRT_VERSION)/kubevirt-operator.yaml
5151
KUBEVIRT_CR_YAML = https://github.com/kubevirt/kubevirt/releases/download/$(KUBEVIRT_VERSION)/kubevirt-cr.yaml
5252

53-
CILIUM_VERSION = 1.17.1
53+
CILIUM_VERSION = 1.17.2
5454
CILIUM_IMAGE_REPO = quay.io/cilium
5555

5656
CERT_MANAGER_VERSION = v1.17.1

go.mod

+17-17
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ require (
1919
github.com/go-logr/stdr v1.2.2
2020
github.com/google/uuid v1.6.0
2121
github.com/httprunner/httprunner/v4 v4.3.7-0.20240124083022-402b74876a59
22-
github.com/k8snetworkplumbingwg/network-attachment-definition-client v1.7.5
22+
github.com/k8snetworkplumbingwg/network-attachment-definition-client v1.7.6
2323
github.com/k8snetworkplumbingwg/sriovnet v1.2.0
2424
github.com/kubeovn/felix v0.0.0-20240506083207-ed396be1b6cf
2525
github.com/kubeovn/go-iptables v0.0.0-20230322103850-8619a8ab3dca
@@ -40,15 +40,15 @@ require (
4040
github.com/sirupsen/logrus v1.9.3
4141
github.com/spf13/pflag v1.0.6
4242
github.com/stretchr/testify v1.10.0
43-
github.com/vishvananda/netlink v1.3.1-0.20250209162617-655392bc778a
43+
github.com/vishvananda/netlink v1.3.1-0.20250303224720-0e7078ed04c8
4444
go.uber.org/mock v0.5.0
4545
golang.org/x/mod v0.24.0
4646
golang.org/x/sys v0.31.0
4747
golang.org/x/time v0.11.0
4848
golang.org/x/tools v0.31.0
4949
google.golang.org/grpc v1.71.0
50-
google.golang.org/protobuf v1.36.5
51-
gopkg.in/k8snetworkplumbingwg/multus-cni.v4 v4.1.4
50+
google.golang.org/protobuf v1.36.6
51+
gopkg.in/k8snetworkplumbingwg/multus-cni.v4 v4.2.0
5252
k8s.io/api v0.32.3
5353
k8s.io/apiextensions-apiserver v0.32.3
5454
k8s.io/apimachinery v0.32.3
@@ -59,11 +59,11 @@ require (
5959
k8s.io/kubectl v0.32.3
6060
k8s.io/kubernetes v1.32.3
6161
k8s.io/pod-security-admission v0.32.3
62-
k8s.io/utils v0.0.0-20241210054802-24370beab758
62+
k8s.io/utils v0.0.0-20250321185631-1f6e0b77f77e
6363
kernel.org/pub/linux/libs/security/libcap/cap v1.2.75
6464
kubevirt.io/api v1.5.0
6565
kubevirt.io/client-go v1.5.0
66-
sigs.k8s.io/controller-runtime v0.20.3
66+
sigs.k8s.io/controller-runtime v0.20.4
6767
sigs.k8s.io/network-policy-api v0.1.5
6868
)
6969

@@ -136,7 +136,7 @@ require (
136136
github.com/google/gnostic-models v0.6.9 // indirect
137137
github.com/google/go-cmp v0.7.0 // indirect
138138
github.com/google/gofuzz v1.2.0 // indirect
139-
github.com/google/pprof v0.0.0-20250302191652-9094ed2288e7 // indirect
139+
github.com/google/pprof v0.0.0-20250317173921-a4b03ec1a45e // indirect
140140
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
141141
github.com/gorilla/websocket v1.5.3 // indirect
142142
github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79 // indirect
@@ -210,8 +210,8 @@ require (
210210
github.com/projectcalico/libcalico-go v0.0.0-20190305235709-3d935c3b8b86 // indirect
211211
github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring v0.80.1 // indirect
212212
github.com/prometheus/client_model v0.6.1 // indirect
213-
github.com/prometheus/common v0.62.0 // indirect
214-
github.com/prometheus/procfs v0.15.1 // indirect
213+
github.com/prometheus/common v0.63.0 // indirect
214+
github.com/prometheus/procfs v0.16.0 // indirect
215215
github.com/rivo/uniseg v0.4.7 // indirect
216216
github.com/russross/blackfriday/v2 v2.1.0 // indirect
217217
github.com/sagikazarmark/locafero v0.7.0 // indirect
@@ -233,9 +233,9 @@ require (
233233
github.com/x448/float16 v0.8.4 // indirect
234234
github.com/xlab/treeprint v1.2.0 // indirect
235235
github.com/yusufpapurcu/wmi v1.2.4 // indirect
236-
go.etcd.io/etcd/api/v3 v3.5.19 // indirect
237-
go.etcd.io/etcd/client/pkg/v3 v3.5.19 // indirect
238-
go.etcd.io/etcd/client/v3 v3.5.19 // indirect
236+
go.etcd.io/etcd/api/v3 v3.5.20 // indirect
237+
go.etcd.io/etcd/client/pkg/v3 v3.5.20 // indirect
238+
go.etcd.io/etcd/client/v3 v3.5.20 // indirect
239239
go.opencensus.io v0.24.0 // indirect
240240
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
241241
go.opentelemetry.io/contrib/instrumentation/github.com/emicklei/go-restful/otelrestful v0.60.0 // indirect
@@ -259,10 +259,10 @@ require (
259259
golang.org/x/sync v0.12.0 // indirect
260260
golang.org/x/term v0.30.0 // indirect
261261
golang.org/x/text v0.23.0 // indirect
262-
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
263-
google.golang.org/genproto v0.0.0-20250311190419-81fb87f6b8bf // indirect
264-
google.golang.org/genproto/googleapis/api v0.0.0-20250311190419-81fb87f6b8bf // indirect
265-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250311190419-81fb87f6b8bf // indirect
262+
gomodules.xyz/jsonpatch/v2 v2.5.0 // indirect
263+
google.golang.org/genproto v0.0.0-20250324211829-b45e905df463 // indirect
264+
google.golang.org/genproto/googleapis/api v0.0.0-20250324211829-b45e905df463 // indirect
265+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250324211829-b45e905df463 // indirect
266266
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
267267
gopkg.in/inf.v0 v0.9.1 // indirect
268268
gopkg.in/ini.v1 v1.67.0 // indirect
@@ -291,7 +291,7 @@ require (
291291
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 // indirect
292292
sigs.k8s.io/kustomize/api v0.19.0 // indirect
293293
sigs.k8s.io/kustomize/kyaml v0.19.0 // indirect
294-
sigs.k8s.io/structured-merge-diff/v4 v4.5.0 // indirect
294+
sigs.k8s.io/structured-merge-diff/v4 v4.6.0 // indirect
295295
sigs.k8s.io/yaml v1.4.0 // indirect
296296
)
297297

0 commit comments

Comments
 (0)