Skip to content

Commit 57b02b7

Browse files
Bump k8s.io/cli-runtime from 0.34.3 to 0.35.0 (#259)
* Bump k8s.io/cli-runtime from 0.34.3 to 0.35.0 Bumps [k8s.io/cli-runtime](https://github.com/kubernetes/cli-runtime) from 0.34.3 to 0.35.0. - [Commits](kubernetes/cli-runtime@v0.34.3...v0.35.0) --- updated-dependencies: - dependency-name: k8s.io/cli-runtime dependency-version: 0.35.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> * Bump go version also in gh action * bump golangci-lint --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Maximilian Geberl <[email protected]>
1 parent ba5f54a commit 57b02b7

File tree

5 files changed

+72
-103
lines changed

5 files changed

+72
-103
lines changed

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Set up Go
2020
uses: actions/setup-go@v6
2121
with:
22-
go-version: 1.24.x
22+
go-version: 1.25.x
2323
- name: Run GoReleaser
2424
uses: goreleaser/goreleaser-action@v6
2525
with:

.github/workflows/tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
test:
1515
strategy:
1616
matrix:
17-
go-version: [1.24.x]
17+
go-version: [1.25.x]
1818
os: [ubuntu-latest, macos-latest, windows-latest]
1919
runs-on: ${{ matrix.os }}
2020

@@ -60,7 +60,7 @@ jobs:
6060
test-kind:
6161
strategy:
6262
matrix:
63-
go-version: [1.24.x]
63+
go-version: [1.25.x]
6464
runs-on: ubuntu-latest
6565

6666
steps:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ SHELL=/bin/bash -e -o pipefail
22
PWD = $(shell pwd)
33

44
# constants
5-
GOLANGCI_VERSION = 2.1.5
5+
GOLANGCI_VERSION = 2.7.2
66
all: git-hooks tidy ## Initializes all tools
77

88
out:

go.mod

Lines changed: 18 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
module github.com/stackitcloud/rename-pvc
22

3-
go 1.24.0
3+
go 1.25.0
44

55
require (
66
github.com/spf13/cobra v1.10.2
7-
k8s.io/api v0.34.3
8-
k8s.io/apimachinery v0.34.3
9-
k8s.io/cli-runtime v0.34.3
10-
k8s.io/client-go v0.34.3
7+
k8s.io/api v0.35.0
8+
k8s.io/apimachinery v0.35.0
9+
k8s.io/cli-runtime v0.35.0
10+
k8s.io/client-go v0.35.0
1111
)
1212

1313
require (
@@ -17,11 +17,10 @@ require (
1717
github.com/emicklei/go-restful/v3 v3.12.2 // indirect
1818
github.com/fxamacker/cbor/v2 v2.9.0 // indirect
1919
github.com/go-errors/errors v1.4.2 // indirect
20-
github.com/go-logr/logr v1.4.2 // indirect
20+
github.com/go-logr/logr v1.4.3 // indirect
2121
github.com/go-openapi/jsonpointer v0.21.0 // indirect
2222
github.com/go-openapi/jsonreference v0.20.2 // indirect
2323
github.com/go-openapi/swag v0.23.0 // indirect
24-
github.com/gogo/protobuf v1.3.2 // indirect
2524
github.com/google/btree v1.1.3 // indirect
2625
github.com/google/gnostic-models v0.7.0 // indirect
2726
github.com/google/uuid v1.6.0 // indirect
@@ -37,27 +36,26 @@ require (
3736
github.com/monochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00 // indirect
3837
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
3938
github.com/peterbourgon/diskv v2.0.1+incompatible // indirect
40-
github.com/pkg/errors v0.9.1 // indirect
4139
github.com/spf13/pflag v1.0.9 // indirect
4240
github.com/x448/float16 v0.8.4 // indirect
4341
github.com/xlab/treeprint v1.2.0 // indirect
44-
go.yaml.in/yaml/v2 v2.4.2 // indirect
42+
go.yaml.in/yaml/v2 v2.4.3 // indirect
4543
go.yaml.in/yaml/v3 v3.0.4 // indirect
46-
golang.org/x/net v0.38.0 // indirect
47-
golang.org/x/oauth2 v0.27.0 // indirect
48-
golang.org/x/sync v0.12.0 // indirect
49-
golang.org/x/sys v0.31.0 // indirect
50-
golang.org/x/term v0.30.0 // indirect
51-
golang.org/x/text v0.23.0 // indirect
44+
golang.org/x/net v0.47.0 // indirect
45+
golang.org/x/oauth2 v0.30.0 // indirect
46+
golang.org/x/sync v0.18.0 // indirect
47+
golang.org/x/sys v0.38.0 // indirect
48+
golang.org/x/term v0.37.0 // indirect
49+
golang.org/x/text v0.31.0 // indirect
5250
golang.org/x/time v0.9.0 // indirect
53-
google.golang.org/protobuf v1.36.5 // indirect
54-
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
51+
google.golang.org/protobuf v1.36.8 // indirect
52+
gopkg.in/evanphx/json-patch.v4 v4.13.0 // indirect
5553
gopkg.in/inf.v0 v0.9.1 // indirect
5654
gopkg.in/yaml.v3 v3.0.1 // indirect
5755
k8s.io/klog/v2 v2.130.1 // indirect
58-
k8s.io/kube-openapi v0.0.0-20250710124328-f3f2b991d03b // indirect
59-
k8s.io/utils v0.0.0-20250604170112-4c0f3b243397 // indirect
60-
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 // indirect
56+
k8s.io/kube-openapi v0.0.0-20250910181357-589584f1c912 // indirect
57+
k8s.io/utils v0.0.0-20251002143259-bc988d571ff4 // indirect
58+
sigs.k8s.io/json v0.0.0-20250730193827-2d320260d730 // indirect
6159
sigs.k8s.io/kustomize/api v0.20.1 // indirect
6260
sigs.k8s.io/kustomize/kyaml v0.20.1 // indirect
6361
sigs.k8s.io/randfill v1.0.0 // indirect

0 commit comments

Comments
 (0)