Skip to content

Commit 0f40d3a

Browse files
chore: update dependencies
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 702501b commit 0f40d3a

File tree

4 files changed

+90
-33
lines changed

4 files changed

+90
-33
lines changed

.github/workflows/ci.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
steps:
3333
- name: gather-system-info
3434
id: system-info
35-
uses: kenchan0130/actions-system-info@v1.3.1
35+
uses: kenchan0130/actions-system-info@v1.4.0
3636
continue-on-error: true
3737
- name: print-system-info
3838
run: |
@@ -56,7 +56,7 @@ jobs:
5656
done
5757
continue-on-error: true
5858
- name: checkout
59-
uses: actions/checkout@v4
59+
uses: actions/checkout@v5
6060
- name: Unshallow
6161
run: |
6262
git fetch --prune --unshallow
@@ -106,7 +106,7 @@ jobs:
106106
steps:
107107
- name: gather-system-info
108108
id: system-info
109-
uses: kenchan0130/actions-system-info@v1.3.1
109+
uses: kenchan0130/actions-system-info@v1.4.0
110110
continue-on-error: true
111111
- name: print-system-info
112112
run: |
@@ -130,7 +130,7 @@ jobs:
130130
done
131131
continue-on-error: true
132132
- name: checkout
133-
uses: actions/checkout@v4
133+
uses: actions/checkout@v5
134134
- name: Unshallow
135135
run: |
136136
git fetch --prune --unshallow
@@ -168,7 +168,7 @@ jobs:
168168
steps:
169169
- name: gather-system-info
170170
id: system-info
171-
uses: kenchan0130/actions-system-info@v1.3.1
171+
uses: kenchan0130/actions-system-info@v1.4.0
172172
continue-on-error: true
173173
- name: print-system-info
174174
run: |
@@ -192,7 +192,7 @@ jobs:
192192
done
193193
continue-on-error: true
194194
- name: checkout
195-
uses: actions/checkout@v4
195+
uses: actions/checkout@v5
196196
- name: Unshallow
197197
run: |
198198
git fetch --prune --unshallow

Dockerfile

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

33
# Meta args applied to stage base names.
44

@@ -56,7 +56,7 @@ RUN --mount=type=cache,target=/root/.cache --mount=type=cache,target=/tmp go tes
5656
FROM scratch AS unit-tests
5757
COPY --from=unit-tests-run /src/coverage.txt /coverage.txt
5858

59-
FROM --platform=${BUILDPLATFORM} alpine:3.21 AS release-build
59+
FROM --platform=${BUILDPLATFORM} alpine:3.22 AS release-build
6060
ADD https://github.com/kubernetes-sigs/kustomize/releases/download/kustomize%2Fv4.1.0/kustomize_v4.1.0_linux_amd64.tar.gz .
6161
RUN tar -xf kustomize_v4.1.0_linux_amd64.tar.gz -C /usr/local/bin && rm kustomize_v4.1.0_linux_amd64.tar.gz
6262
COPY ./config ./config

go.mod

Lines changed: 27 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ module github.com/siderolabs/cluster-api-control-plane-provider-talos
33
go 1.24.0
44

55
// compatibility with kube-apiserver v0.32.3, should be dropped once kube-apiserver dependency is updated
6-
replace github.com/google/cel-go => github.com/google/cel-go v0.22.0
6+
replace github.com/google/cel-go => github.com/google/cel-go v0.26.0
77

88
require (
99
github.com/coreos/go-semver v0.3.1
1010
github.com/go-logr/logr v1.4.3
1111
github.com/gobuffalo/flect v1.0.3
1212
github.com/google/uuid v1.6.0
13-
github.com/onsi/gomega v1.36.3
13+
github.com/onsi/gomega v1.38.0
1414
github.com/pkg/errors v0.9.1
1515
github.com/siderolabs/capi-utils v0.0.0-20250812174642-8d7036d74b13
1616
github.com/siderolabs/cluster-api-bootstrap-provider-talos v0.6.10-0.20250811162926-710fae2a8bc0
@@ -20,20 +20,20 @@ require (
2020
github.com/siderolabs/talos/pkg/machinery v1.11.0-beta.2
2121
github.com/spf13/pflag v1.0.7
2222
github.com/stretchr/testify v1.10.0
23-
golang.org/x/sync v0.15.0
23+
golang.org/x/sync v0.16.0
2424
google.golang.org/grpc v1.74.2
25-
google.golang.org/protobuf v1.36.6
25+
google.golang.org/protobuf v1.36.7
2626
gopkg.in/yaml.v3 v3.0.1
27-
k8s.io/api v0.32.3
28-
k8s.io/apiextensions-apiserver v0.32.3
29-
k8s.io/apimachinery v0.32.3
30-
k8s.io/apiserver v0.32.3
31-
k8s.io/client-go v0.32.3
32-
k8s.io/component-base v0.32.3
27+
k8s.io/api v0.33.4
28+
k8s.io/apiextensions-apiserver v0.33.4
29+
k8s.io/apimachinery v0.33.4
30+
k8s.io/apiserver v0.33.4
31+
k8s.io/client-go v0.33.4
32+
k8s.io/component-base v0.33.4
3333
k8s.io/klog/v2 v2.130.1
34-
k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738
34+
k8s.io/utils v0.0.0-20250604170112-4c0f3b243397
3535
sigs.k8s.io/cluster-api v1.10.4
36-
sigs.k8s.io/controller-runtime v0.20.4
36+
sigs.k8s.io/controller-runtime v0.21.0
3737
)
3838

3939
require (
@@ -78,7 +78,7 @@ require (
7878
github.com/golang/protobuf v1.5.4 // indirect
7979
github.com/google/btree v1.1.3 // indirect
8080
github.com/google/cel-go v0.26.0 // indirect
81-
github.com/google/gnostic-models v0.6.8 // indirect
81+
github.com/google/gnostic-models v0.6.9 // indirect
8282
github.com/google/go-cmp v0.7.0 // indirect
8383
github.com/google/go-github/v53 v53.2.0 // indirect
8484
github.com/google/go-querystring v1.1.0 // indirect
@@ -92,6 +92,7 @@ require (
9292
github.com/josharian/native v1.1.0 // indirect
9393
github.com/jsimonetti/rtnetlink/v2 v2.0.5 // indirect
9494
github.com/json-iterator/go v1.1.12 // indirect
95+
github.com/kylelemons/godebug v1.1.0 // indirect
9596
github.com/mailru/easyjson v0.7.7 // indirect
9697
github.com/mdlayher/ethtool v0.4.0 // indirect
9798
github.com/mdlayher/genetlink v1.3.2 // indirect
@@ -109,9 +110,9 @@ require (
109110
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect
110111
github.com/planetscale/vtprotobuf v0.6.1-0.20241121165744-79df5c4772f2 // indirect
111112
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
112-
github.com/prometheus/client_golang v1.19.1 // indirect
113+
github.com/prometheus/client_golang v1.22.0 // indirect
113114
github.com/prometheus/client_model v0.6.1 // indirect
114-
github.com/prometheus/common v0.55.0 // indirect
115+
github.com/prometheus/common v0.62.0 // indirect
115116
github.com/prometheus/procfs v0.15.1 // indirect
116117
github.com/ryanuber/go-glob v1.0.0 // indirect
117118
github.com/sagikazarmark/locafero v0.7.0 // indirect
@@ -131,33 +132,34 @@ require (
131132
github.com/valyala/fastjson v1.6.4 // indirect
132133
github.com/x448/float16 v0.8.4 // indirect
133134
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
134-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.54.0 // indirect
135+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.58.0 // indirect
135136
go.opentelemetry.io/otel v1.36.0 // indirect
136-
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.28.0 // indirect
137-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.27.0 // indirect
137+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.33.0 // indirect
138+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.33.0 // indirect
138139
go.opentelemetry.io/otel/metric v1.36.0 // indirect
139140
go.opentelemetry.io/otel/sdk v1.36.0 // indirect
140141
go.opentelemetry.io/otel/trace v1.36.0 // indirect
141-
go.opentelemetry.io/proto/otlp v1.3.1 // indirect
142+
go.opentelemetry.io/proto/otlp v1.4.0 // indirect
142143
go.uber.org/multierr v1.11.0 // indirect
143144
go.uber.org/zap v1.27.0 // indirect
144-
golang.org/x/crypto v0.38.0 // indirect
145+
golang.org/x/crypto v0.39.0 // indirect
145146
golang.org/x/exp v0.0.0-20250128182459-e0ece0dbea4c // indirect
146-
golang.org/x/net v0.40.0 // indirect
147+
golang.org/x/net v0.41.0 // indirect
147148
golang.org/x/oauth2 v0.30.0 // indirect
148149
golang.org/x/sys v0.35.0 // indirect
149150
golang.org/x/term v0.32.0 // indirect
150-
golang.org/x/text v0.25.0 // indirect
151+
golang.org/x/text v0.26.0 // indirect
151152
golang.org/x/time v0.11.0 // indirect
152153
gomodules.xyz/jsonpatch/v2 v2.5.0 // indirect
153154
google.golang.org/genproto/googleapis/api v0.0.0-20250715232539-7130f93afb79 // indirect
154155
google.golang.org/genproto/googleapis/rpc v0.0.0-20250715232539-7130f93afb79 // indirect
155156
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
156157
gopkg.in/inf.v0 v0.9.1 // indirect
157158
k8s.io/cluster-bootstrap v0.32.3 // indirect
158-
k8s.io/kube-openapi v0.0.0-20241105132330-32ad38e42d3f // indirect
159-
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.31.0 // indirect
159+
k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff // indirect
160+
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.31.2 // indirect
160161
sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3 // indirect
161-
sigs.k8s.io/structured-merge-diff/v4 v4.4.2 // indirect
162+
sigs.k8s.io/randfill v1.0.0 // indirect
163+
sigs.k8s.io/structured-merge-diff/v4 v4.6.0 // indirect
162164
sigs.k8s.io/yaml v1.4.0 // indirect
163165
)

0 commit comments

Comments
 (0)