Skip to content

Commit c9bdd5d

Browse files
committed
Dependabot PRs merge / implement:
No 826 - Bump actions/checkout from 4 to 6 No 836 - Bump golang.org/x/sys from 0.34.0 to 0.40.0 No 838 - Bump k8s.io/apimachinery from 0.33.3 to 0.35.0 No 839 - Bump k8s.io/mount-utils from 0.33.3 to 0.35.0 No 840 - Bump protobuf from 6.31.1 to 6.33.5 in /controllers/servers/csi
1 parent 94da01a commit c9bdd5d

9 files changed

Lines changed: 99 additions & 105 deletions

File tree

.github/workflows/docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout code
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@v6
1515
- name: Run link check
1616
uses: gaurav-nelson/github-action-markdown-link-check@v1
1717
with:

Dockerfile-csi-node

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# limitations under the License.
1414

1515
# Build stage
16-
FROM golang:1.24 AS builder
16+
FROM golang:1.25 AS builder
1717

1818
WORKDIR /go/src/github.com/ibm/ibm-block-csi-driver
1919
ENV GO111MODULE=on

Dockerfile-csi-node.test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# limitations under the License.
1414

1515
# Build stage
16-
FROM golang:1.24 AS builder
16+
FROM golang:1.25 AS builder
1717

1818
WORKDIR /go/src/github.com/ibm/ibm-block-csi-driver
1919
ENV GO111MODULE=on

Dockerfile-csi-test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM golang:1.24
15+
FROM golang:1.25
1616

1717
ARG CSI_PARAMS=csi_params
1818

controllers/servers/csi/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
grpcio==1.74.0
22
grpcio-tools==1.74.0
3-
protobuf==6.31.1
3+
protobuf==6.33.5
44
pyyaml==6.0.2
55
munch==4.0.0
66
retry2==0.9.5

go.mod

Lines changed: 27 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,64 +1,63 @@
11
module github.com/ibm/ibm-block-csi-driver
22

3-
go 1.24.0
4-
5-
toolchain go1.24.1
3+
go 1.25.0
64

75
require (
86
github.com/container-storage-interface/spec v1.9.0
97
github.com/golang/mock v1.6.0
108
github.com/kubernetes-csi/csi-lib-utils v0.19.0
119
github.com/sirupsen/logrus v1.9.3
12-
golang.org/x/sync v0.16.0
13-
golang.org/x/sys v0.34.0
10+
golang.org/x/sync v0.18.0
11+
golang.org/x/sys v0.40.0
1412
google.golang.org/grpc v1.74.2
1513
gopkg.in/yaml.v2 v2.4.0
16-
k8s.io/apimachinery v0.33.3
17-
k8s.io/client-go v0.33.3
18-
k8s.io/mount-utils v0.33.3
19-
k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738
14+
k8s.io/apimachinery v0.35.0
15+
k8s.io/client-go v0.34.2
16+
k8s.io/mount-utils v0.35.0
17+
k8s.io/utils v0.0.0-20251002143259-bc988d571ff4
2018
)
2119

2220
require (
2321
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
24-
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
22+
github.com/emicklei/go-restful/v3 v3.12.2 // indirect
2523
github.com/go-logr/logr v1.4.3 // indirect
2624
github.com/go-openapi/jsonpointer v0.21.0 // indirect
27-
github.com/go-openapi/jsonreference v0.20.2 // indirect
25+
github.com/go-openapi/jsonreference v0.21.0 // indirect
2826
github.com/go-openapi/swag v0.23.0 // indirect
2927
github.com/gogo/protobuf v1.3.2 // indirect
30-
github.com/golang/protobuf v1.5.4 // indirect
3128
github.com/google/uuid v1.6.0 // indirect
3229
github.com/josharian/intern v1.0.0 // indirect
3330
github.com/json-iterator/go v1.1.12 // indirect
34-
github.com/mailru/easyjson v0.7.7 // indirect
31+
github.com/mailru/easyjson v0.9.0 // indirect
3532
github.com/moby/sys/mountinfo v0.7.2 // indirect
3633
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
37-
github.com/modern-go/reflect2 v1.0.2 // indirect
34+
github.com/modern-go/reflect2 v1.0.3-0.20250322232337-35a7c28c31ee // indirect
3835
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
39-
golang.org/x/net v0.40.0 // indirect
36+
golang.org/x/net v0.47.0 // indirect
4037
golang.org/x/oauth2 v0.30.0 // indirect
41-
golang.org/x/term v0.32.0 // indirect
42-
golang.org/x/text v0.25.0 // indirect
38+
golang.org/x/term v0.37.0 // indirect
39+
golang.org/x/text v0.31.0 // indirect
4340
golang.org/x/time v0.9.0 // indirect
44-
google.golang.org/protobuf v1.36.6 // indirect
41+
google.golang.org/protobuf v1.36.8 // indirect
4542
gopkg.in/inf.v0 v0.9.1 // indirect
4643
gopkg.in/yaml.v3 v3.0.1 // indirect
47-
k8s.io/api v0.33.3 // indirect
44+
k8s.io/api v0.34.2 // indirect
4845
k8s.io/klog/v2 v2.130.1 // indirect
49-
k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff // indirect
50-
sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3 // indirect
51-
sigs.k8s.io/structured-merge-diff/v4 v4.6.0 // indirect
52-
sigs.k8s.io/yaml v1.4.0 // indirect
46+
k8s.io/kube-openapi v0.0.0-20250910181357-589584f1c912 // indirect
47+
sigs.k8s.io/json v0.0.0-20250730193827-2d320260d730 // indirect
48+
sigs.k8s.io/yaml v1.6.0 // indirect
5349
)
5450

5551
require (
56-
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
57-
github.com/google/gnostic-models v0.6.9 // indirect
58-
github.com/google/go-cmp v0.7.0 // indirect
59-
github.com/pkg/errors v0.9.1 // indirect
52+
github.com/Masterminds/semver/v3 v3.4.0 // indirect
53+
github.com/fxamacker/cbor/v2 v2.9.0 // indirect
54+
github.com/golang/protobuf v1.5.4 // indirect
55+
github.com/google/gnostic-models v0.7.0 // indirect
6056
github.com/x448/float16 v0.8.4 // indirect
57+
go.yaml.in/yaml/v2 v2.4.3 // indirect
58+
go.yaml.in/yaml/v3 v3.0.4 // indirect
6159
google.golang.org/genproto/googleapis/rpc v0.0.0-20250528174236-200df99c418a // indirect
62-
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
60+
gopkg.in/evanphx/json-patch.v4 v4.13.0 // indirect
6361
sigs.k8s.io/randfill v1.0.0 // indirect
62+
sigs.k8s.io/structured-merge-diff/v6 v6.3.0 // indirect
6463
)

0 commit comments

Comments
 (0)