Skip to content

Commit 9615ac8

Browse files
authored
Bump dependencies (#520)
Signed-off-by: Lukas Frank <[email protected]>
1 parent 5806bdc commit 9615ac8

File tree

9 files changed

+145
-127
lines changed

9 files changed

+145
-127
lines changed

.github/workflows/golangci-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ jobs:
1818
- name: golangci-lint
1919
uses: golangci/golangci-lint-action@v6
2020
with:
21-
version: v1.60
21+
version: v1.64

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the libvirt-provider binary
2-
FROM --platform=$BUILDPLATFORM golang:1.23-bookworm AS builder
2+
FROM --platform=$BUILDPLATFORM golang:1.24-bookworm AS builder
33

44
WORKDIR /workspace
55

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -161,9 +161,9 @@ ADDLICENSE ?= $(LOCALBIN)/addlicense-$(ADDLICENSE_VERSION)
161161

162162
## Tool Versions
163163
KUSTOMIZE_VERSION ?= v5.3.0
164-
CONTROLLER_TOOLS_VERSION ?= v0.14.0
165-
ENVTEST_VERSION ?= release-0.16
166-
GOLANGCI_LINT_VERSION ?= v1.60.1
164+
CONTROLLER_TOOLS_VERSION ?= v0.16.0
165+
ENVTEST_VERSION ?= release-0.19
166+
GOLANGCI_LINT_VERSION ?= v1.64.6
167167
ADDLICENSE_VERSION ?= v1.1.1
168168

169169
.PHONY: kustomize

REUSE.toml

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,24 @@ SPDX-PackageSupplier = "IronCore authors <[email protected]>"
44
SPDX-PackageDownloadLocation = "https://github.com/ironcore-dev/libvirt-provider"
55

66
[[annotations]]
7-
path = [".github/**", "config/**", "go.mod", "go.sum", ".dockerignore", ".gitignore", ".golangci.yaml", "CODEOWNERS", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "Dockerfile", "Makefile", "mkdocs.yml", "hack/**.sh", "mkdocs.yml"]
7+
path = [
8+
".github/**",
9+
"config/**",
10+
"go.mod",
11+
"go.sum",
12+
".dockerignore",
13+
".gitignore",
14+
".golangci.yaml",
15+
"CODEOWNERS",
16+
"CODE_OF_CONDUCT.md",
17+
"CONTRIBUTING.md",
18+
"Dockerfile",
19+
"Makefile",
20+
"mkdocs.yml",
21+
"hack/**.sh",
22+
"mkdocs.yml",
23+
"REUSE.toml"
24+
]
825
precedence = "aggregate"
926
SPDX-FileCopyrightText = "2023 SAP SE or an SAP affiliate company and IronCore contributors"
1027
SPDX-License-Identifier = "Apache-2.0"

go.mod

Lines changed: 39 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,38 @@
11
module github.com/ironcore-dev/libvirt-provider
22

3-
go 1.23.0
3+
go 1.24
4+
toolchain go1.24.1
45

56
require (
67
github.com/blang/semver/v4 v4.0.0
78
github.com/ceph/go-ceph v0.32.0
8-
github.com/containerd/containerd v1.7.25
9-
github.com/digitalocean/go-libvirt v0.0.0-20250207191401-950a7b2d7eaf
9+
github.com/containerd/containerd v1.7.26
10+
github.com/digitalocean/go-libvirt v0.0.0-20250226181018-4d5f24afb7c2
1011
github.com/go-chi/chi/v5 v5.2.1
1112
github.com/go-logr/logr v1.4.2
1213
github.com/gogo/protobuf v1.3.2
1314
github.com/google/uuid v1.6.0
14-
github.com/ironcore-dev/controller-utils v0.9.7
15-
github.com/ironcore-dev/ironcore v0.2.2-0.20250123160359-93cbe02a9e96
15+
github.com/ironcore-dev/controller-utils v0.9.8
16+
github.com/ironcore-dev/ironcore v0.2.2
1617
github.com/ironcore-dev/ironcore-image v0.2.4
17-
github.com/ironcore-dev/ironcore-net v0.2.2-0.20250217135313-cdc549e75d91
18+
github.com/ironcore-dev/ironcore-net v0.2.2
1819
github.com/moby/term v0.5.2
19-
github.com/onsi/ginkgo/v2 v2.22.2
20+
github.com/onsi/ginkgo/v2 v2.23.0
2021
github.com/onsi/gomega v1.36.2
21-
github.com/opencontainers/image-spec v1.1.0
22-
github.com/prometheus/client_golang v1.21.0
22+
github.com/opencontainers/image-spec v1.1.1
23+
github.com/prometheus/client_golang v1.21.1
2324
github.com/shirou/gopsutil/v3 v3.24.5
2425
github.com/spf13/cobra v1.9.1
2526
github.com/spf13/pflag v1.0.6
26-
golang.org/x/sync v0.11.0
27-
google.golang.org/grpc v1.70.0
27+
golang.org/x/sync v0.12.0
28+
google.golang.org/grpc v1.71.0
2829
k8s.io/api v0.32.2
2930
k8s.io/apimachinery v0.32.2
3031
k8s.io/client-go v0.32.2
3132
k8s.io/kubectl v0.32.2
3233
k8s.io/utils v0.0.0-20241210054802-24370beab758
3334
libvirt.org/go/libvirtxml v1.11000.1
34-
sigs.k8s.io/controller-runtime v0.20.2
35+
sigs.k8s.io/controller-runtime v0.20.3
3536
)
3637

3738
require (
@@ -45,13 +46,13 @@ require (
4546
github.com/creack/pty v1.1.21 // indirect
4647
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
4748
github.com/distribution/reference v0.6.0 // indirect
48-
github.com/docker/cli v28.0.0+incompatible // indirect
49+
github.com/docker/cli v28.0.1+incompatible // indirect
4950
github.com/docker/distribution v2.8.3+incompatible // indirect
50-
github.com/docker/docker v28.0.0+incompatible // indirect
51-
github.com/docker/docker-credential-helpers v0.8.2 // indirect
51+
github.com/docker/docker v28.0.1+incompatible // indirect
52+
github.com/docker/docker-credential-helpers v0.9.2 // indirect
5253
github.com/docker/go-connections v0.5.0 // indirect
5354
github.com/docker/go-metrics v0.0.1 // indirect
54-
github.com/emicklei/go-restful/v3 v3.12.1 // indirect
55+
github.com/emicklei/go-restful/v3 v3.12.2 // indirect
5556
github.com/evanphx/json-patch/v5 v5.9.11 // indirect
5657
github.com/felixge/httpsnoop v1.0.4 // indirect
5758
github.com/fsnotify/fsnotify v1.8.0 // indirect
@@ -66,17 +67,17 @@ require (
6667
github.com/golang/protobuf v1.5.4 // indirect
6768
github.com/google/btree v1.1.3 // indirect
6869
github.com/google/gnostic-models v0.6.9 // indirect
69-
github.com/google/go-cmp v0.6.0 // indirect
70+
github.com/google/go-cmp v0.7.0 // indirect
7071
github.com/google/gofuzz v1.2.0 // indirect
71-
github.com/google/pprof v0.0.0-20250208200701-d0013a598941 // indirect
72+
github.com/google/pprof v0.0.0-20250302191652-9094ed2288e7 // indirect
7273
github.com/gorilla/mux v1.8.1 // indirect
7374
github.com/gorilla/websocket v1.5.3 // indirect
7475
github.com/inconshreveable/mousetrap v1.1.0 // indirect
7576
github.com/josharian/intern v1.0.0 // indirect
7677
github.com/json-iterator/go v1.1.12 // indirect
7778
github.com/klauspost/compress v1.18.0 // indirect
7879
github.com/liggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de // indirect
79-
github.com/lufia/plan9stats v0.0.0-20240909124753-873cd0166683 // indirect
80+
github.com/lufia/plan9stats v0.0.0-20250303091104-876f3ea5145d // indirect
8081
github.com/mailru/easyjson v0.9.0 // indirect
8182
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
8283
github.com/moby/locker v1.0.1 // indirect
@@ -93,27 +94,27 @@ require (
9394
github.com/prometheus/procfs v0.15.1 // indirect
9495
github.com/shoenig/go-m1cpu v0.1.6 // indirect
9596
github.com/sirupsen/logrus v1.9.3 // indirect
96-
github.com/tklauser/go-sysconf v0.3.14 // indirect
97-
github.com/tklauser/numcpus v0.9.0 // indirect
97+
github.com/tklauser/go-sysconf v0.3.15 // indirect
98+
github.com/tklauser/numcpus v0.10.0 // indirect
9899
github.com/x448/float16 v0.8.4 // indirect
99100
github.com/yusufpapurcu/wmi v1.2.4 // indirect
100101
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
101-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.59.0 // indirect
102-
go.opentelemetry.io/otel v1.34.0 // indirect
103-
go.opentelemetry.io/otel/metric v1.34.0 // indirect
104-
go.opentelemetry.io/otel/trace v1.34.0 // indirect
102+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.60.0 // indirect
103+
go.opentelemetry.io/otel v1.35.0 // indirect
104+
go.opentelemetry.io/otel/metric v1.35.0 // indirect
105+
go.opentelemetry.io/otel/trace v1.35.0 // indirect
105106
go.uber.org/multierr v1.11.0 // indirect
106107
go.uber.org/zap v1.27.0 // indirect
107-
golang.org/x/crypto v0.33.0 // indirect
108-
golang.org/x/net v0.35.0 // indirect
109-
golang.org/x/oauth2 v0.26.0 // indirect
110-
golang.org/x/sys v0.30.0 // indirect
111-
golang.org/x/term v0.29.0 // indirect
112-
golang.org/x/text v0.22.0 // indirect
113-
golang.org/x/time v0.10.0 // indirect
114-
golang.org/x/tools v0.30.0 // indirect
115-
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
116-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250219182151-9fdb1cabc7b2 // indirect
108+
golang.org/x/crypto v0.36.0 // indirect
109+
golang.org/x/net v0.37.0 // indirect
110+
golang.org/x/oauth2 v0.28.0 // indirect
111+
golang.org/x/sys v0.31.0 // indirect
112+
golang.org/x/term v0.30.0 // indirect
113+
golang.org/x/text v0.23.0 // indirect
114+
golang.org/x/time v0.11.0 // indirect
115+
golang.org/x/tools v0.31.0 // indirect
116+
gomodules.xyz/jsonpatch/v2 v2.5.0 // indirect
117+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250303144028-a0af3efb3deb // indirect
117118
google.golang.org/protobuf v1.36.5 // indirect
118119
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
119120
gopkg.in/inf.v0 v0.9.1 // indirect
@@ -123,9 +124,10 @@ require (
123124
k8s.io/apiserver v0.32.2 // indirect
124125
k8s.io/cli-runtime v0.32.2 // indirect
125126
k8s.io/klog/v2 v2.130.1 // indirect
126-
k8s.io/kube-openapi v0.0.0-20241212222426-2c72e554b1e7 // indirect
127+
k8s.io/kube-openapi v0.0.0-20250304201544-e5f78fe3ede9 // indirect
127128
oras.land/oras-go v1.2.6 // indirect
128129
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 // indirect
129-
sigs.k8s.io/structured-merge-diff/v4 v4.5.0 // indirect
130+
sigs.k8s.io/randfill v1.0.0 // indirect
131+
sigs.k8s.io/structured-merge-diff/v4 v4.6.0 // indirect
130132
sigs.k8s.io/yaml v1.4.0 // indirect
131133
)

0 commit comments

Comments
 (0)