Skip to content

Commit 04fa918

Browse files
Renovate: Update External dependencies
1 parent fdf4a9a commit 04fa918

File tree

7 files changed

+101
-94
lines changed

7 files changed

+101
-94
lines changed

.github/workflows/checks.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
uses: actions/setup-go@v5
3030
with:
3131
check-latest: true
32-
go-version: 1.24.6
32+
go-version: 1.25.0
3333
- name: Run golangci-lint
3434
uses: golangci/golangci-lint-action@v8
3535
with:

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
uses: actions/setup-go@v5
3333
with:
3434
check-latest: true
35-
go-version: 1.24.6
35+
go-version: 1.25.0
3636
- name: Build all binaries
3737
run: make build-all
3838
test:
@@ -47,6 +47,6 @@ jobs:
4747
uses: actions/setup-go@v5
4848
with:
4949
check-latest: true
50-
go-version: 1.24.6
50+
go-version: 1.25.0
5151
- name: Run tests and generate coverage report
5252
run: make build/cover.out

.github/workflows/codeql.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
uses: actions/setup-go@v5
3333
with:
3434
check-latest: true
35-
go-version: 1.24.6
35+
go-version: 1.25.0
3636
- name: Initialize CodeQL
3737
uses: github/codeql-action/init@v3
3838
with:

.github/workflows/goreleaser.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
uses: actions/setup-go@v5
2828
with:
2929
check-latest: true
30-
go-version: 1.24.6
30+
go-version: 1.25.0
3131
- name: Install syft
3232
uses: anchore/sbom-action/download-syft@v0.20.5
3333
- name: Generate release info

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ IMG ?= ${IMG_REPO}:${IMG_TAG}
66
# ENVTEST_K8S_VERSION refers to the version of kubebuilder assets to be downloaded by envtest binary.
77
ENVTEST_K8S_VERSION = 1.28
88
## Tool Versions
9-
KUSTOMIZE_VERSION ?= 5.6.0
10-
CONTROLLER_TOOLS_VERSION ?= 0.18.0
9+
KUSTOMIZE_VERSION ?= 5.7.1
10+
CONTROLLER_TOOLS_VERSION ?= 0.19.0
1111
GOLINT_VERSION ?= 2.1.6
1212
GINKGOLINTER_VERSION ?= 0.19.1
1313

go.mod

Lines changed: 31 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -3,46 +3,47 @@ module github.com/sapcc/disco
33
go 1.24.0
44

55
require (
6-
github.com/go-logr/logr v1.4.2
7-
github.com/goccy/go-yaml v1.17.1
8-
github.com/gophercloud/gophercloud/v2 v2.7.0
9-
github.com/onsi/ginkgo/v2 v2.23.4
10-
github.com/onsi/gomega v1.37.0
6+
github.com/go-logr/logr v1.4.3
7+
github.com/goccy/go-yaml v1.18.0
8+
github.com/gophercloud/gophercloud/v2 v2.8.0
9+
github.com/onsi/ginkgo/v2 v2.25.1
10+
github.com/onsi/gomega v1.38.2
1111
github.com/pkg/errors v0.9.1
12-
k8s.io/api v0.33.0
13-
k8s.io/apimachinery v0.33.1
14-
k8s.io/client-go v0.33.0
15-
k8s.io/utils v0.0.0-20250502105355-0f33e8f1c979
16-
sigs.k8s.io/controller-runtime v0.20.4
12+
k8s.io/api v0.34.0
13+
k8s.io/apimachinery v0.34.0
14+
k8s.io/client-go v0.34.0
15+
k8s.io/utils v0.0.0-20250604170112-4c0f3b243397
16+
sigs.k8s.io/controller-runtime v0.22.0
1717
)
1818

1919
require (
20+
github.com/Masterminds/semver/v3 v3.4.0 // indirect
2021
github.com/beorn7/perks v1.0.1 // indirect
2122
github.com/cespare/xxhash/v2 v2.3.0 // indirect
2223
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
23-
github.com/emicklei/go-restful/v3 v3.12.1 // indirect
24+
github.com/emicklei/go-restful/v3 v3.12.2 // indirect
2425
github.com/evanphx/json-patch/v5 v5.9.11 // indirect
25-
github.com/fsnotify/fsnotify v1.8.0 // indirect
26-
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
26+
github.com/fsnotify/fsnotify v1.9.0 // indirect
27+
github.com/fxamacker/cbor/v2 v2.9.0 // indirect
2728
github.com/go-logr/zapr v1.3.0 // indirect
2829
github.com/go-openapi/jsonpointer v0.21.0 // indirect
2930
github.com/go-openapi/jsonreference v0.21.0 // indirect
3031
github.com/go-openapi/swag v0.23.0 // indirect
3132
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
3233
github.com/gogo/protobuf v1.3.2 // indirect
3334
github.com/google/btree v1.1.3 // indirect
34-
github.com/google/gnostic-models v0.6.9 // indirect
35+
github.com/google/gnostic-models v0.7.0 // indirect
3536
github.com/google/go-cmp v0.7.0 // indirect
3637
github.com/google/pprof v0.0.0-20250403155104-27863c87afa6 // indirect
3738
github.com/google/uuid v1.6.0 // indirect
3839
github.com/josharian/intern v1.0.0 // indirect
3940
github.com/json-iterator/go v1.1.12 // indirect
40-
github.com/klauspost/compress v1.17.11 // indirect
4141
github.com/mailru/easyjson v0.9.0 // indirect
4242
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
43-
github.com/modern-go/reflect2 v1.0.2 // indirect
43+
github.com/modern-go/reflect2 v1.0.3-0.20250322232337-35a7c28c31ee // indirect
4444
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
45-
github.com/prometheus/client_golang v1.20.5 // indirect
45+
github.com/pmezard/go-difflib v1.0.0 // indirect
46+
github.com/prometheus/client_golang v1.22.0 // indirect
4647
github.com/prometheus/client_model v0.6.1 // indirect
4748
github.com/prometheus/common v0.62.0 // indirect
4849
github.com/prometheus/procfs v0.15.1 // indirect
@@ -51,24 +52,26 @@ require (
5152
go.uber.org/automaxprocs v1.6.0 // indirect
5253
go.uber.org/multierr v1.11.0 // indirect
5354
go.uber.org/zap v1.27.0 // indirect
54-
golang.org/x/net v0.38.0 // indirect
55+
go.yaml.in/yaml/v2 v2.4.2 // indirect
56+
go.yaml.in/yaml/v3 v3.0.4 // indirect
57+
golang.org/x/net v0.43.0 // indirect
5558
golang.org/x/oauth2 v0.27.0 // indirect
56-
golang.org/x/sync v0.12.0 // indirect
57-
golang.org/x/sys v0.32.0 // indirect
58-
golang.org/x/term v0.30.0 // indirect
59-
golang.org/x/text v0.23.0 // indirect
59+
golang.org/x/sync v0.16.0 // indirect
60+
golang.org/x/sys v0.35.0 // indirect
61+
golang.org/x/term v0.34.0 // indirect
62+
golang.org/x/text v0.28.0 // indirect
6063
golang.org/x/time v0.10.0 // indirect
61-
golang.org/x/tools v0.31.0 // indirect
64+
golang.org/x/tools v0.36.0 // indirect
6265
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
63-
google.golang.org/protobuf v1.36.5 // indirect
66+
google.golang.org/protobuf v1.36.7 // indirect
6467
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
6568
gopkg.in/inf.v0 v0.9.1 // indirect
6669
gopkg.in/yaml.v3 v3.0.1 // indirect
67-
k8s.io/apiextensions-apiserver v0.32.1 // indirect
70+
k8s.io/apiextensions-apiserver v0.34.0 // indirect
6871
k8s.io/klog/v2 v2.130.1 // indirect
69-
k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff // indirect
72+
k8s.io/kube-openapi v0.0.0-20250710124328-f3f2b991d03b // indirect
7073
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 // indirect
7174
sigs.k8s.io/randfill v1.0.0 // indirect
72-
sigs.k8s.io/structured-merge-diff/v4 v4.6.0 // indirect
73-
sigs.k8s.io/yaml v1.4.0 // indirect
75+
sigs.k8s.io/structured-merge-diff/v6 v6.3.0 // indirect
76+
sigs.k8s.io/yaml v1.6.0 // indirect
7477
)

0 commit comments

Comments
 (0)