Skip to content

Commit 092b8fd

Browse files
deps: update module k8s.io/mount-utils to v0.30.2 (#595)
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [k8s.io/mount-utils](https://togithub.com/kubernetes/mount-utils) | `v0.29.4` -> `v0.30.2` | [![age](https://developer.mend.io/api/mc/badges/age/go/k8s.io%2fmount-utils/v0.30.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/k8s.io%2fmount-utils/v0.30.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/k8s.io%2fmount-utils/v0.29.4/v0.30.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/k8s.io%2fmount-utils/v0.29.4/v0.30.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>kubernetes/mount-utils (k8s.io/mount-utils)</summary> ### [`v0.30.2`](https://togithub.com/kubernetes/mount-utils/compare/v0.30.1...v0.30.2) [Compare Source](https://togithub.com/kubernetes/mount-utils/compare/v0.30.1...v0.30.2) ### [`v0.30.1`](https://togithub.com/kubernetes/mount-utils/compare/v0.30.0...v0.30.1) [Compare Source](https://togithub.com/kubernetes/mount-utils/compare/v0.30.0...v0.30.1) ### [`v0.30.0`](https://togithub.com/kubernetes/mount-utils/compare/v0.29.6...v0.30.0) [Compare Source](https://togithub.com/kubernetes/mount-utils/compare/v0.29.6...v0.30.0) ### [`v0.29.6`](https://togithub.com/kubernetes/mount-utils/compare/v0.29.5...v0.29.6) [Compare Source](https://togithub.com/kubernetes/mount-utils/compare/v0.29.5...v0.29.6) ### [`v0.29.5`](https://togithub.com/kubernetes/mount-utils/compare/v0.29.4...v0.29.5) [Compare Source](https://togithub.com/kubernetes/mount-utils/compare/v0.29.4...v0.29.5) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/hetznercloud/csi-driver). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMDEuNCIsInVwZGF0ZWRJblZlciI6IjM3LjQxMy4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 4de86e7 commit 092b8fd

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

go.mod

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
module github.com/hetznercloud/csi-driver
22

3-
go 1.22
3+
go 1.22.0
4+
5+
toolchain go1.22.4
46

57
require (
68
github.com/container-storage-interface/spec v1.9.0
@@ -14,7 +16,7 @@ require (
1416
github.com/stretchr/testify v1.9.0
1517
golang.org/x/sys v0.21.0
1618
google.golang.org/grpc v1.64.0
17-
k8s.io/mount-utils v0.29.4
19+
k8s.io/mount-utils v0.30.2
1820
k8s.io/utils v0.0.0-20240502163921-fe8a2dddb1d0
1921
)
2022

@@ -23,7 +25,7 @@ require (
2325
github.com/cespare/xxhash/v2 v2.2.0 // indirect
2426
github.com/davecgh/go-spew v1.1.1 // indirect
2527
github.com/go-logfmt/logfmt v0.5.1 // indirect
26-
github.com/go-logr/logr v1.3.0 // indirect
28+
github.com/go-logr/logr v1.4.1 // indirect
2729
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 // indirect
2830
github.com/google/go-cmp v0.6.0 // indirect
2931
github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1 // indirect
@@ -42,5 +44,5 @@ require (
4244
google.golang.org/protobuf v1.33.0 // indirect
4345
gopkg.in/yaml.v2 v2.4.0 // indirect
4446
gopkg.in/yaml.v3 v3.0.1 // indirect
45-
k8s.io/klog/v2 v2.110.1 // indirect
47+
k8s.io/klog/v2 v2.120.1 // indirect
4648
)

go.sum

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ github.com/go-logfmt/logfmt v0.5.1 h1:otpy5pqBCBZ1ng9RQ0dPu4PN7ba75Y/aA+UpowDyNV
2828
github.com/go-logfmt/logfmt v0.5.1/go.mod h1:WYhtIu8zTZfxdn5+rREduYbwxfcBr/Vr6KEVveWlfTs=
2929
github.com/go-logr/logr v1.3.0 h1:2y3SDp0ZXuc6/cjLSZ+Q3ir+QB9T/iG5yYRXqsagWSY=
3030
github.com/go-logr/logr v1.3.0/go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY=
31+
github.com/go-logr/logr v1.4.1 h1:pKouT5E8xu9zeFC39JXRDukb6JFQPXM5p5I91188VAQ=
32+
github.com/go-logr/logr v1.4.1/go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY=
3133
github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY=
3234
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 h1:tfuBGBXKqDEevZMzYi5KSi8KkcZtzBcTgAUUtapy0OI=
3335
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572/go.mod h1:9Pwr4B2jHnOSGXyyzV8ROjYa2ojvAY6HCGYYfMoC3Ls=
@@ -189,7 +191,11 @@ honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWh
189191
honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=
190192
k8s.io/klog/v2 v2.110.1 h1:U/Af64HJf7FcwMcXyKm2RPM22WZzyR7OSpYj5tg3cL0=
191193
k8s.io/klog/v2 v2.110.1/go.mod h1:YGtd1984u+GgbuZ7e08/yBuAfKLSO0+uR1Fhi6ExXjo=
194+
k8s.io/klog/v2 v2.120.1 h1:QXU6cPEOIslTGvZaXvFWiP9VKyeet3sawzTOvdXb4Vw=
195+
k8s.io/klog/v2 v2.120.1/go.mod h1:3Jpz1GvMt720eyJH1ckRHK1EDfpxISzJ7I9OYgaDtPE=
192196
k8s.io/mount-utils v0.29.4 h1:tW/URea4gtXlaVW7VObr52NQhS+z3SXTg1GUaFZjRL4=
193197
k8s.io/mount-utils v0.29.4/go.mod h1:SHUMR9n3b6tLgEmlyT36cL6fV6Sjwa5CJhc0guCXvb0=
198+
k8s.io/mount-utils v0.30.2 h1:2KDVY9hXyDyRw9EO4lmox4+Nn5atVOq+4ffZ/br2aAU=
199+
k8s.io/mount-utils v0.30.2/go.mod h1:9sCVmwGLcV1MPvbZ+rToMDnl1QcGozy+jBPd0MsQLIo=
194200
k8s.io/utils v0.0.0-20240502163921-fe8a2dddb1d0 h1:jgGTlFYnhF1PM1Ax/lAlxUPE+KfCIXHaathvJg1C3ak=
195201
k8s.io/utils v0.0.0-20240502163921-fe8a2dddb1d0/go.mod h1:OLgZIPagt7ERELqWJFomSt595RzquPNLL48iOWgYOg0=

0 commit comments

Comments
 (0)