Skip to content

Commit 08488dd

Browse files
chore: update dependencies
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 1be5f8f commit 08488dd

File tree

10 files changed

+136
-76
lines changed

10 files changed

+136
-76
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -922,7 +922,7 @@ ARG TARGETARCH
922922
RUN --mount=type=cache,target=/.cache GOOS=linux GOARCH=${TARGETARCH} go build ${GO_BUILDFLAGS} -ldflags "${GO_LDFLAGS}" -o /installer
923923
RUN chmod +x /installer
924924

925-
FROM alpine:3.20.3 AS unicode-pf2
925+
FROM alpine:3.21.2 AS unicode-pf2
926926
RUN apk add --no-cache --update --no-scripts grub
927927

928928
FROM scratch AS install-artifacts-amd64
@@ -945,7 +945,7 @@ FROM install-artifacts-${TARGETARCH} AS install-artifacts-targetarch
945945

946946
FROM install-artifacts-${INSTALLER_ARCH} AS install-artifacts
947947

948-
FROM alpine:3.20.3 AS installer-image
948+
FROM alpine:3.21.2 AS installer-image
949949
ARG SOURCE_DATE_EPOCH
950950
ENV SOURCE_DATE_EPOCH=${SOURCE_DATE_EPOCH}
951951
ARG INSTALLER_PKGS

Makefile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -69,13 +69,13 @@ PKG_TALOSCTL_CNI_BUNDLE_INSTALL ?= $(PKGS_PREFIX)/talosctl-cni-bundle-install:$(
6969
# renovate: datasource=github-tags depName=golang/go
7070
GO_VERSION ?= 1.23
7171
# renovate: datasource=go depName=golang.org/x/tools
72-
GOIMPORTS_VERSION ?= v0.28.0
72+
GOIMPORTS_VERSION ?= v0.29.0
7373
# renovate: datasource=go depName=mvdan.cc/gofumpt
7474
GOFUMPT_VERSION ?= v0.7.0
7575
# renovate: datasource=go depName=github.com/golangci/golangci-lint
76-
GOLANGCILINT_VERSION ?= v1.62.2
76+
GOLANGCILINT_VERSION ?= v1.63.4
7777
# renovate: datasource=go depName=golang.org/x/tools
78-
STRINGER_VERSION ?= v0.28.0
78+
STRINGER_VERSION ?= v0.29.0
7979
# renovate: datasource=go depName=github.com/dmarkham/enumer
8080
ENUMER_VERSION ?= v1.5.10
8181
# renovate: datasource=go depName=k8s.io/code-generator
@@ -93,13 +93,13 @@ PROTOC_GEN_DOC_VERSION ?= v1.5.1
9393
# renovate: datasource=npm depName=markdownlint-cli
9494
MARKDOWNLINTCLI_VERSION ?= 0.43.0
9595
# renovate: datasource=npm depName=textlint
96-
TEXTLINT_VERSION ?= 14.4.0
96+
TEXTLINT_VERSION ?= 14.4.2
9797
# renovate: datasource=npm depName=textlint-filter-rule-comments
9898
TEXTLINT_FILTER_RULE_COMMENTS_VERSION ?= 1.2.2
9999
# renovate: datasource=npm depName=textlint-rule-one-sentence-per-line
100100
TEXTLINT_RULE_ONE_SENTENCE_PER_LINE_VERSION ?= 2.0.0
101101
# renovate: datasource=docker depName=klakegg/hugo
102-
HUGO_VERSION ?= 0.111.3-ext-alpine
102+
HUGO_VERSION ?= 0.111.3
103103
OPERATING_SYSTEM := $(shell uname -s | tr "[:upper:]" "[:lower:]")
104104
ARCH := $(shell uname -m | sed 's/x86_64/amd64/' | sed 's/aarch64/arm64/')
105105
TALOSCTL_DEFAULT_TARGET := talosctl-$(OPERATING_SYSTEM)
@@ -110,11 +110,11 @@ INTEGRATION_TEST_PROVISION_DEFAULT_TARGET := integration-test-provision-$(OPERAT
110110
# renovate: datasource=github-releases depName=kubernetes/kubernetes
111111
KUBECTL_VERSION ?= v1.32.0
112112
# renovate: datasource=github-releases depName=kastenhq/kubestr
113-
KUBESTR_VERSION ?= v0.4.47
113+
KUBESTR_VERSION ?= v0.4.48
114114
# renovate: datasource=github-releases depName=helm/helm
115115
HELM_VERSION ?= v3.16.4
116116
# renovate: datasource=github-releases depName=cilium/cilium-cli
117-
CILIUM_CLI_VERSION ?= v0.16.22
117+
CILIUM_CLI_VERSION ?= v0.16.23
118118
# renovate: datasource=github-releases depName=microsoft/secureboot_objects
119119
MICROSOFT_SECUREBOOT_RELEASE ?= v1.1.3
120120

go.mod

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ go 1.23.3
44

55
replace (
66
// see e.g. https://github.com/grpc/grpc-go/issues/6696
7-
cloud.google.com/go => cloud.google.com/go v0.100.2
7+
cloud.google.com/go => cloud.google.com/go v0.118.0
88

99
// forked coredns so we don't carry caddy and other stuff into the Talos
1010
github.com/coredns/coredns => github.com/siderolabs/coredns v1.11.53
1111

1212
// see https://github.com/mdlayher/kobject/pull/5
13-
github.com/mdlayher/kobject => github.com/smira/kobject v0.0.0-20240304111826-49c8d4613389
13+
github.com/mdlayher/kobject => github.com/smira/kobject 19ca17470d7d
1414

1515
// Use nested module.
1616
github.com/siderolabs/talos/pkg/machinery => ./pkg/machinery
@@ -23,12 +23,12 @@ replace (
2323

2424
// forked go-yaml that introduces RawYAML interface, which can be used to populate YAML fields using bytes
2525
// which are then encoded as a valid YAML blocks with proper indentiation
26-
gopkg.in/yaml.v3 => github.com/unix4ever/yaml v0.0.0-20220527175918-f17b0f05cf2c
26+
gopkg.in/yaml.v3 => github.com/unix4ever/yaml/v2 v2.4.0
2727
)
2828

2929
// fd-leak related replacements: https://github.com/siderolabs/talos/issues/9412
3030
// https://github.com/insomniacslk/dhcp/pull/550
31-
replace github.com/insomniacslk/dhcp => github.com/smira/dhcp v0.0.0-20241001122726-31e9ef21c016
31+
replace github.com/insomniacslk/dhcp => github.com/smira/dhcp 7d93572ebe8e
3232

3333
// Kubernetes dependencies sharing the same version.
3434
require (
@@ -46,19 +46,19 @@ require (
4646

4747
require (
4848
cloud.google.com/go/compute/metadata v0.6.0
49-
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.16.0
49+
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.17.0
5050
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.8.0
5151
github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azcertificates v1.3.0
5252
github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azkeys v1.3.0
5353
github.com/alexflint/go-filemutex v1.3.0
54-
github.com/aws/aws-sdk-go-v2/config v1.28.7
55-
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.22
56-
github.com/aws/aws-sdk-go-v2/service/kms v1.37.8
54+
github.com/aws/aws-sdk-go-v2/config v1.28.9
55+
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.23
56+
github.com/aws/aws-sdk-go-v2/service/kms v1.37.10
5757
github.com/aws/smithy-go v1.22.1
5858
github.com/beevik/ntp v1.4.3
5959
github.com/benbjohnson/clock v1.3.5 // project archived on 2023-05-18
6060
github.com/blang/semver/v4 v4.0.0
61-
github.com/cenkalti/backoff/v4 v4.3.0
61+
github.com/cenkalti/backoff/v5 v5.0.0
6262
github.com/containerd/cgroups/v3 v3.0.5
6363
github.com/containerd/containerd/api v1.8.0
6464
github.com/containerd/containerd/v2 v2.0.1
@@ -67,10 +67,10 @@ require (
6767
github.com/containerd/platforms v1.0.0-rc.0
6868
github.com/containerd/typeurl/v2 v2.2.3
6969
github.com/containernetworking/cni v1.2.3
70-
github.com/containernetworking/plugins v1.6.1
71-
github.com/coredns/coredns v1.11.3
70+
github.com/containernetworking/plugins v1.6.2
71+
github.com/coredns/coredns v1.12.0
7272
github.com/coreos/go-iptables v0.8.0
73-
github.com/cosi-project/runtime v0.8.1
73+
github.com/cosi-project/runtime v0.9.0
7474
github.com/distribution/reference v0.6.0
7575
github.com/docker/cli v27.4.1+incompatible
7676
github.com/docker/docker v27.4.1+incompatible
@@ -83,7 +83,7 @@ require (
8383
github.com/foxboron/go-uefi v0.0.0-20241219185318-19dc140271bf
8484
github.com/freddierice/go-losetup/v2 v2.0.1
8585
github.com/fsnotify/fsnotify v1.8.0
86-
github.com/gdamore/tcell/v2 v2.7.4
86+
github.com/gdamore/tcell/v2 v2.8.0
8787
github.com/gertd/go-pluralize v0.2.1
8888
github.com/gizak/termui/v3 v3.1.0
8989
github.com/godbus/dbus/v5 v5.1.0
@@ -102,9 +102,9 @@ require (
102102
github.com/hashicorp/go-getter/v2 v2.2.3
103103
github.com/hashicorp/go-multierror v1.1.1
104104
github.com/hetznercloud/hcloud-go/v2 v2.17.1
105-
github.com/insomniacslk/dhcp v0.0.0-20240829085014-a3a4c1f04475
105+
github.com/insomniacslk/dhcp 8abf58130905
106106
github.com/jeromer/syslogparser v1.1.0
107-
github.com/jsimonetti/rtnetlink/v2 v2.0.3-0.20241216183107-2d6e9f8ad3f2
107+
github.com/jsimonetti/rtnetlink/v2 6935a578a98f
108108
github.com/jxskiss/base62 v1.1.0
109109
github.com/klauspost/compress v1.17.11
110110
github.com/klauspost/cpuid/v2 v2.2.9
@@ -122,15 +122,15 @@ require (
122122
github.com/nberlee/go-netstat v0.1.2
123123
github.com/opencontainers/go-digest v1.0.0
124124
github.com/opencontainers/image-spec v1.1.0
125-
github.com/opencontainers/runc v1.2.3
125+
github.com/opencontainers/runc v1.2.4
126126
github.com/opencontainers/runtime-spec v1.2.0
127127
github.com/packethost/packngo v0.31.0
128128
github.com/pelletier/go-toml/v2 v2.2.3
129129
github.com/pin/tftp/v3 v3.1.0
130130
github.com/pkg/xattr v0.4.10
131131
github.com/pmorjan/kmod v1.1.1
132132
github.com/prometheus/procfs v0.15.1
133-
github.com/rivo/tview v0.0.0-20241103174730-c76f7879f592
133+
github.com/rivo/tview 17b7edb88c57
134134
github.com/rs/xid v1.6.0
135135
github.com/ryanuber/columnize v2.1.2+incompatible
136136
github.com/ryanuber/go-glob v1.0.0
@@ -141,7 +141,7 @@ require (
141141
github.com/siderolabs/discovery-client v0.1.10
142142
github.com/siderolabs/gen v0.8.0
143143
github.com/siderolabs/go-api-signature v0.3.6
144-
github.com/siderolabs/go-blockdevice v0.4.8
144+
github.com/siderolabs/go-blockdevice/v2 v2.0.10
145145
github.com/siderolabs/go-blockdevice/v2 v2.0.10
146146
github.com/siderolabs/go-circular v0.2.1
147147
github.com/siderolabs/go-cmd v0.1.3
@@ -179,20 +179,20 @@ require (
179179
go.etcd.io/etcd/etcdutl/v3 v3.5.17
180180
go.uber.org/zap v1.27.0
181181
go4.org/netipx v0.0.0-20231129151722-fdeea329fbba
182-
golang.org/x/net v0.33.0
183-
golang.org/x/oauth2 v0.24.0
182+
golang.org/x/net v0.34.0
183+
golang.org/x/oauth2 v0.25.0
184184
golang.org/x/sync v0.10.0
185-
golang.org/x/sys v0.28.0
186-
golang.org/x/term v0.27.0
185+
golang.org/x/sys v0.29.0
186+
golang.org/x/term v0.28.0
187187
golang.org/x/text v0.21.0
188-
golang.org/x/time v0.8.0
189-
golang.zx2c4.com/wireguard/wgctrl v0.0.0-20230429144221-925a1e7659e6
188+
golang.org/x/time v0.9.0
189+
golang.zx2c4.com/wireguard/wgctrl a9ab2273dd10
190190
google.golang.org/grpc v1.69.2
191-
google.golang.org/protobuf v1.36.1
191+
google.golang.org/protobuf v1.36.2
192192
gopkg.in/yaml.v3 v3.0.1
193193
k8s.io/klog/v2 v2.130.1
194194
kernel.org/pub/linux/libs/security/libcap/cap v1.2.73
195-
sigs.k8s.io/hydrophone v0.6.1-0.20240718103601-b92baf7e0b04
195+
sigs.k8s.io/hydrophone e8a92aa05a29
196196
sigs.k8s.io/yaml v1.4.0
197197
)
198198

hack/cloud-image-uploader/go.mod

Lines changed: 29 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,21 @@ module github.com/siderolabs/cloud-image-uploader
33
go 1.23.3
44

55
require (
6-
cloud.google.com/go/storage v1.49.0
6+
cloud.google.com/go/storage v1.50.0
77
github.com/Azure/azure-sdk-for-go v68.0.0+incompatible
8-
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.16.0
8+
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.17.0
99
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.8.0
1010
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/compute/armcompute/v5 v5.7.0
11+
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/compute/armcompute/v6 v6.2.0
1112
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/storage/armstorage v1.6.0
1213
github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.5.0
1314
github.com/Azure/go-autorest/autorest v0.11.29
1415
github.com/Azure/go-autorest/autorest/azure/auth v0.5.13
15-
github.com/aws/aws-sdk-go-v2 v1.32.7
16-
github.com/aws/aws-sdk-go-v2/config v1.28.7
17-
github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.17.44
18-
github.com/aws/aws-sdk-go-v2/service/ec2 v1.198.1
19-
github.com/aws/aws-sdk-go-v2/service/s3 v1.71.1
16+
github.com/aws/aws-sdk-go-v2 v1.32.8
17+
github.com/aws/aws-sdk-go-v2/config v1.28.9
18+
github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.17.47
19+
github.com/aws/aws-sdk-go-v2/service/ec2 v1.198.3
20+
github.com/aws/aws-sdk-go-v2/service/s3 v1.72.2
2021
github.com/blang/semver/v4 v4.0.0
2122
github.com/google/uuid v1.6.0
2223
github.com/klauspost/compress v1.17.11
@@ -25,7 +26,7 @@ require (
2526
github.com/siderolabs/go-retry v0.3.3
2627
github.com/spf13/pflag v1.0.5
2728
golang.org/x/sync v0.10.0
28-
google.golang.org/api v0.214.0
29+
google.golang.org/api v0.216.0
2930
)
3031

3132
require (
@@ -50,19 +51,19 @@ require (
5051
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric v0.48.1 // indirect
5152
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.48.1 // indirect
5253
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.7 // indirect
53-
github.com/aws/aws-sdk-go-v2/credentials v1.17.48 // indirect
54-
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.22 // indirect
55-
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.26 // indirect
56-
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.26 // indirect
54+
github.com/aws/aws-sdk-go-v2/credentials v1.17.50 // indirect
55+
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.23 // indirect
56+
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.27 // indirect
57+
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.27 // indirect
5758
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.1 // indirect
58-
github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.26 // indirect
59+
github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.27 // indirect
5960
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.12.1 // indirect
60-
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.4.7 // indirect
61-
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.7 // indirect
62-
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.18.7 // indirect
63-
github.com/aws/aws-sdk-go-v2/service/sso v1.24.8 // indirect
64-
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.28.7 // indirect
65-
github.com/aws/aws-sdk-go-v2/service/sts v1.33.3 // indirect
61+
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.4.8 // indirect
62+
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.8 // indirect
63+
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.18.8 // indirect
64+
github.com/aws/aws-sdk-go-v2/service/sso v1.24.9 // indirect
65+
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.28.8 // indirect
66+
github.com/aws/aws-sdk-go-v2/service/sts v1.33.5 // indirect
6667
github.com/aws/smithy-go v1.22.1 // indirect
6768
github.com/census-instrumentation/opencensus-proto v0.4.1 // indirect
6869
github.com/cespare/xxhash/v2 v2.3.0 // indirect
@@ -78,7 +79,7 @@ require (
7879
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
7980
github.com/google/s2a-go v0.1.8 // indirect
8081
github.com/googleapis/enterprise-certificate-proxy v0.3.4 // indirect
81-
github.com/googleapis/gax-go/v2 v2.14.0 // indirect
82+
github.com/googleapis/gax-go/v2 v2.14.1 // indirect
8283
github.com/kylelemons/godebug v1.1.0 // indirect
8384
github.com/mitchellh/go-homedir v1.1.0 // indirect
8485
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect
@@ -92,15 +93,15 @@ require (
9293
go.opentelemetry.io/otel/sdk v1.31.0 // indirect
9394
go.opentelemetry.io/otel/sdk/metric v1.31.0 // indirect
9495
go.opentelemetry.io/otel/trace v1.31.0 // indirect
95-
golang.org/x/crypto v0.31.0 // indirect
96-
golang.org/x/net v0.33.0 // indirect
97-
golang.org/x/oauth2 v0.24.0 // indirect
98-
golang.org/x/sys v0.28.0 // indirect
96+
golang.org/x/crypto v0.32.0 // indirect
97+
golang.org/x/net v0.34.0 // indirect
98+
golang.org/x/oauth2 v0.25.0 // indirect
99+
golang.org/x/sys v0.29.0 // indirect
99100
golang.org/x/text v0.21.0 // indirect
100-
golang.org/x/time v0.8.0 // indirect
101+
golang.org/x/time v0.9.0 // indirect
101102
google.golang.org/genproto v0.0.0-20241118233622-e639e219e697 // indirect
102-
google.golang.org/genproto/googleapis/api v0.0.0-20241118233622-e639e219e697 // indirect
103-
google.golang.org/genproto/googleapis/rpc v0.0.0-20241209162323-e6fa225c2576 // indirect
103+
google.golang.org/genproto/googleapis/api v0.0.0-20241209162323-e6fa225c2576 // indirect
104+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250102185135-69823020774d // indirect
104105
google.golang.org/grpc v1.69.2 // indirect
105-
google.golang.org/protobuf v1.35.2 // indirect
106+
google.golang.org/protobuf v1.36.1 // indirect
106107
)

0 commit comments

Comments
 (0)