Skip to content

Commit 622d66a

Browse files
committed
chore: bump deps
Bump stuff Signed-off-by: Dmitriy Matrenichev <dmitry.matrenichev@siderolabs.com>
1 parent f9f5e0e commit 622d66a

File tree

12 files changed

+220
-220
lines changed

12 files changed

+220
-220
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# syntax = docker/dockerfile-upstream:1.8.1-labs
1+
# syntax = docker/dockerfile-upstream:1.9.0-labs
22

33
# Meta args applied to stage base names.
44

@@ -782,7 +782,7 @@ ARG TARGETARCH
782782
RUN --mount=type=cache,target=/.cache GOOS=linux GOARCH=${TARGETARCH} go build ${GO_BUILDFLAGS} -ldflags "${GO_LDFLAGS}" -o /installer
783783
RUN chmod +x /installer
784784

785-
FROM alpine:3.18.4 AS unicode-pf2
785+
FROM alpine:3.20.2 AS unicode-pf2
786786
RUN apk add --no-cache --update --no-scripts grub
787787

788788
FROM scratch AS install-artifacts-amd64
@@ -805,7 +805,7 @@ FROM install-artifacts-${TARGETARCH} AS install-artifacts-targetarch
805805

806806
FROM install-artifacts-${INSTALLER_ARCH} AS install-artifacts
807807

808-
FROM alpine:3.18.4 AS installer-image
808+
FROM alpine:3.20.2 AS installer-image
809809
ARG SOURCE_DATE_EPOCH
810810
ENV SOURCE_DATE_EPOCH=${SOURCE_DATE_EPOCH}
811811
RUN apk add --no-cache --update --no-scripts \

Makefile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,11 @@ GOFUMPT_VERSION ?= v0.6.0
6363
# renovate: datasource=go depName=github.com/golangci/golangci-lint
6464
GOLANGCILINT_VERSION ?= v1.59.1
6565
# renovate: datasource=go depName=golang.org/x/tools
66-
STRINGER_VERSION ?= v0.21.0
66+
STRINGER_VERSION ?= v0.24.0
6767
# renovate: datasource=go depName=github.com/dmarkham/enumer
68-
ENUMER_VERSION ?= v1.5.9
68+
ENUMER_VERSION ?= v1.5.10
6969
# renovate: datasource=go depName=k8s.io/code-generator
70-
DEEPCOPY_GEN_VERSION ?= v0.30.1
70+
DEEPCOPY_GEN_VERSION ?= v0.30.3
7171
# renovate: datasource=go depName=github.com/planetscale/vtprotobuf
7272
VTPROTOBUF_VERSION ?= v0.6.0
7373
# renovate: datasource=go depName=github.com/siderolabs/deep-copy
@@ -95,11 +95,11 @@ KUBECTL_VERSION ?= v1.31.0-rc.1
9595
# renovate: datasource=github-releases depName=kastenhq/kubestr
9696
KUBESTR_VERSION ?= v0.4.44
9797
# renovate: datasource=github-releases depName=helm/helm
98-
HELM_VERSION ?= v3.15.2
98+
HELM_VERSION ?= v3.15.3
9999
# renovate: datasource=github-releases depName=kubernetes-sigs/cluster-api
100-
CLUSTERCTL_VERSION ?= 1.7.3
100+
CLUSTERCTL_VERSION ?= 1.7.4
101101
# renovate: datasource=github-releases depName=cilium/cilium-cli
102-
CILIUM_CLI_VERSION ?= v0.16.11
102+
CILIUM_CLI_VERSION ?= v0.16.15
103103
# renovate: datasource=github-releases depName=microsoft/secureboot_objects
104104
MICROSOFT_SECUREBOOT_RELEASE ?= v1.1.3
105105

go.mod

Lines changed: 42 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,15 @@ require (
4141
)
4242

4343
require (
44-
cloud.google.com/go/compute/metadata v0.4.0
45-
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.12.0
44+
cloud.google.com/go/compute/metadata v0.5.0
45+
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.13.0
4646
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.7.0
4747
github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azcertificates v1.1.0
4848
github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azkeys v1.1.0
4949
github.com/alexflint/go-filemutex v1.3.0
50-
github.com/aws/aws-sdk-go-v2/config v1.27.23
51-
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.9
52-
github.com/aws/aws-sdk-go-v2/service/kms v1.35.1
50+
github.com/aws/aws-sdk-go-v2/config v1.27.27
51+
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.11
52+
github.com/aws/aws-sdk-go-v2/service/kms v1.35.3
5353
github.com/aws/smithy-go v1.20.3
5454
github.com/beevik/ntp v1.4.3
5555
github.com/benbjohnson/clock v1.3.5 // project archived on 2023-05-18
@@ -60,27 +60,27 @@ require (
6060
github.com/containerd/containerd/v2 v2.0.0-rc.3
6161
github.com/containerd/errdefs v0.1.0
6262
github.com/containerd/platforms v0.2.1
63-
github.com/containerd/typeurl/v2 v2.1.1
64-
github.com/containernetworking/cni v1.2.2
63+
github.com/containerd/typeurl/v2 v2.2.0
64+
github.com/containernetworking/cni v1.2.3
6565
github.com/containernetworking/plugins v1.5.1
66-
github.com/coredns/coredns v1.11.2
66+
github.com/coredns/coredns v1.11.3
6767
github.com/coreos/go-iptables v0.7.0
68-
github.com/cosi-project/runtime v0.5.3
68+
github.com/cosi-project/runtime v0.5.5
6969
github.com/distribution/reference v0.6.0
70-
github.com/docker/docker v27.0.3+incompatible
70+
github.com/docker/docker v27.1.0+incompatible
7171
github.com/docker/go-connections v0.5.0
7272
github.com/dustin/go-humanize v1.0.1
7373
github.com/ecks/uefi v0.0.0-20221116212947-caef65d070eb
7474
github.com/fatih/color v1.17.0
75-
github.com/foxboron/go-uefi v0.0.0-20240522180132-205d5597883a
75+
github.com/foxboron/go-uefi v0.0.0-20240805124652-e2076f0e58ca
7676
github.com/freddierice/go-losetup/v2 v2.0.1
7777
github.com/fsnotify/fsnotify v1.7.0
7878
github.com/gdamore/tcell/v2 v2.7.4
7979
github.com/gertd/go-pluralize v0.2.1
8080
github.com/gizak/termui/v3 v3.1.0
8181
github.com/godbus/dbus/v5 v5.1.0
8282
github.com/golang/mock v1.6.0
83-
github.com/google/go-containerregistry v0.19.2
83+
github.com/google/go-containerregistry v0.20.2
8484
github.com/google/go-tpm v0.9.1
8585
github.com/google/nftables v0.2.0
8686
github.com/google/uuid v1.6.0
@@ -89,10 +89,10 @@ require (
8989
github.com/grpc-ecosystem/go-grpc-middleware/v2 v2.1.0
9090
github.com/hashicorp/go-cleanhttp v0.5.2
9191
github.com/hashicorp/go-envparse v0.1.0
92-
github.com/hashicorp/go-getter/v2 v2.2.2
92+
github.com/hashicorp/go-getter/v2 v2.2.3
9393
github.com/hashicorp/go-multierror v1.1.1
94-
github.com/hetznercloud/hcloud-go/v2 v2.10.2
95-
github.com/insomniacslk/dhcp v0.0.0-20240628075535-bf3278ac95c1
94+
github.com/hetznercloud/hcloud-go/v2 v2.13.0
95+
github.com/insomniacslk/dhcp v0.0.0-20240710054256-ddd8a41251c9
9696
github.com/jeromer/syslogparser v1.1.0
9797
github.com/jsimonetti/rtnetlink/v2 v2.0.2
9898
github.com/jxskiss/base62 v1.1.0
@@ -119,19 +119,19 @@ require (
119119
github.com/pin/tftp/v3 v3.1.0
120120
github.com/pmorjan/kmod v1.1.1
121121
github.com/prometheus/procfs v0.15.1
122-
github.com/rivo/tview v0.0.0-20240625185742-b0a7293b8130
122+
github.com/rivo/tview v0.0.0-20240807095714-a8dd8799d63b
123123
github.com/rs/xid v1.5.0
124124
github.com/ryanuber/columnize v2.1.2+incompatible
125125
github.com/ryanuber/go-glob v1.0.0
126126
github.com/safchain/ethtool v0.4.1
127-
github.com/scaleway/scaleway-sdk-go v1.0.0-beta.28
127+
github.com/scaleway/scaleway-sdk-go v1.0.0-beta.29
128128
github.com/siderolabs/crypto v0.4.4
129129
github.com/siderolabs/discovery-api v0.1.4
130130
github.com/siderolabs/discovery-client v0.1.9
131131
github.com/siderolabs/gen v0.5.0
132-
github.com/siderolabs/go-api-signature v0.3.3
132+
github.com/siderolabs/go-api-signature v0.3.4
133133
github.com/siderolabs/go-blockdevice v0.4.7
134-
github.com/siderolabs/go-blockdevice/v2 v2.0.0-20240610010119-f4a4030394f4
134+
github.com/siderolabs/go-blockdevice/v2 v2.0.0-20240805130014-114af2019684
135135
github.com/siderolabs/go-circular v0.2.0
136136
github.com/siderolabs/go-cmd v0.1.1
137137
github.com/siderolabs/go-copy v0.1.0
@@ -166,28 +166,28 @@ require (
166166
go.etcd.io/etcd/etcdutl/v3 v3.5.15
167167
go.uber.org/zap v1.27.0
168168
go4.org/netipx v0.0.0-20231129151722-fdeea329fbba
169-
golang.org/x/net v0.26.0
170-
golang.org/x/oauth2 v0.21.0
171-
golang.org/x/sync v0.7.0
172-
golang.org/x/sys v0.22.0
173-
golang.org/x/term v0.21.0
174-
golang.org/x/text v0.16.0
175-
golang.org/x/time v0.5.0
169+
golang.org/x/net v0.28.0
170+
golang.org/x/oauth2 v0.22.0
171+
golang.org/x/sync v0.8.0
172+
golang.org/x/sys v0.24.0
173+
golang.org/x/term v0.23.0
174+
golang.org/x/text v0.17.0
175+
golang.org/x/time v0.6.0
176176
golang.zx2c4.com/wireguard/wgctrl v0.0.0-20230429144221-925a1e7659e6
177177
google.golang.org/grpc v1.65.0
178178
google.golang.org/protobuf v1.34.2
179179
gopkg.in/yaml.v3 v3.0.1
180180
k8s.io/klog/v2 v2.130.1
181181
kernel.org/pub/linux/libs/security/libcap/cap v1.2.70
182-
sigs.k8s.io/hydrophone v0.6.1-0.20240705095313-91065c9fe3a5
182+
sigs.k8s.io/hydrophone v0.6.1-0.20240718103601-b92baf7e0b04
183183
sigs.k8s.io/yaml v1.4.0
184184
)
185185

186186
require (
187187
github.com/0x5a17ed/itkit v0.6.0 // indirect
188188
github.com/AdaLogics/go-fuzz-headers v0.0.0-20230811130428-ced1acdcaa24 // indirect
189189
github.com/AdamKorcz/go-118-fuzz-build v0.0.0-20230306123547-8075edf89bb0 // indirect
190-
github.com/Azure/azure-sdk-for-go/sdk/internal v1.9.0 // indirect
190+
github.com/Azure/azure-sdk-for-go/sdk/internal v1.10.0 // indirect
191191
github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/internal v1.0.0 // indirect
192192
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
193193
github.com/AzureAD/microsoft-authentication-library-for-go v1.2.2 // indirect
@@ -200,16 +200,16 @@ require (
200200
github.com/adrg/xdg v0.4.0 // indirect
201201
github.com/apparentlymart/go-cidr v1.1.0 // indirect
202202
github.com/armon/circbuf v0.0.0-20190214190532-5111143e8da2 // indirect
203-
github.com/aws/aws-sdk-go-v2 v1.30.1 // indirect
204-
github.com/aws/aws-sdk-go-v2/credentials v1.17.23 // indirect
205-
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.13 // indirect
206-
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.13 // indirect
203+
github.com/aws/aws-sdk-go-v2 v1.30.3 // indirect
204+
github.com/aws/aws-sdk-go-v2/credentials v1.17.27 // indirect
205+
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.15 // indirect
206+
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.15 // indirect
207207
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.0 // indirect
208208
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.11.3 // indirect
209-
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.15 // indirect
210-
github.com/aws/aws-sdk-go-v2/service/sso v1.22.1 // indirect
211-
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.26.1 // indirect
212-
github.com/aws/aws-sdk-go-v2/service/sts v1.30.1 // indirect
209+
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.17 // indirect
210+
github.com/aws/aws-sdk-go-v2/service/sso v1.22.4 // indirect
211+
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.26.4 // indirect
212+
github.com/aws/aws-sdk-go-v2/service/sts v1.30.3 // indirect
213213
github.com/beorn7/perks v1.0.1 // indirect
214214
github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect
215215
github.com/cespare/xxhash/v2 v2.3.0 // indirect
@@ -227,7 +227,7 @@ require (
227227
github.com/coreos/go-systemd/v22 v22.5.0 // indirect
228228
github.com/cpuguy83/go-md2man/v2 v2.0.4 // indirect
229229
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
230-
github.com/docker/cli v24.0.0+incompatible // indirect
230+
github.com/docker/cli v27.1.1+incompatible // indirect
231231
github.com/docker/distribution v2.8.3+incompatible // indirect
232232
github.com/docker/docker-credential-helpers v0.7.0 // indirect
233233
github.com/docker/go-units v0.5.0 // indirect
@@ -336,19 +336,19 @@ require (
336336
go.opentelemetry.io/otel/trace v1.28.0 // indirect
337337
go.starlark.net v0.0.0-20230525235612-a134d8f9ddca // indirect
338338
go.uber.org/multierr v1.11.0 // indirect
339-
golang.org/x/crypto v0.24.0 // indirect
339+
golang.org/x/crypto v0.26.0 // indirect
340340
golang.org/x/exp v0.0.0-20240506185415-9bf2ced13842 // indirect
341-
golang.org/x/mod v0.18.0 // indirect
342-
golang.org/x/tools v0.22.0 // indirect
341+
golang.org/x/mod v0.20.0 // indirect
342+
golang.org/x/tools v0.24.0 // indirect
343343
golang.zx2c4.com/wintun v0.0.0-20230126152724-0fa3db229ce2 // indirect
344344
golang.zx2c4.com/wireguard v0.0.0-20231211153847-12269c276173 // indirect
345345
google.golang.org/genproto/googleapis/api v0.0.0-20240617180043-68d350f18fd4 // indirect
346-
google.golang.org/genproto/googleapis/rpc v0.0.0-20240701130421-f6361c86f094 // indirect
346+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240808171019-573a1156607a // indirect
347347
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
348348
gopkg.in/inf.v0 v0.9.1 // indirect
349349
gopkg.in/yaml.v2 v2.4.0 // indirect
350350
k8s.io/cli-runtime v0.31.0-rc.1 // indirect
351-
k8s.io/kube-openapi v0.0.0-20240703190633-0aa61b46e8c2 // indirect
351+
k8s.io/kube-openapi v0.0.0-20240709000822-3c01b740850f // indirect
352352
k8s.io/utils v0.0.0-20240711033017-18e509b52bc8 // indirect
353353
kernel.org/pub/linux/libs/security/libcap/psx v1.2.70 // indirect
354354
rsc.io/qr v0.2.0 // indirect

0 commit comments

Comments
 (0)