Skip to content

Commit f8e02f1

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

File tree

2 files changed

+21
-21
lines changed

2 files changed

+21
-21
lines changed

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.19.0-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: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -3,37 +3,37 @@ 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.1
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.2
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
17-
github.com/siderolabs/crypto v0.6.3
18-
github.com/siderolabs/gen v0.8.5
17+
github.com/siderolabs/crypto v0.6.4
18+
github.com/siderolabs/gen v0.8.6
1919
github.com/siderolabs/go-retry v0.3.3
20-
github.com/siderolabs/talos/pkg/machinery v1.11.0
21-
github.com/spf13/pflag v1.0.7
22-
github.com/stretchr/testify v1.10.0
23-
golang.org/x/sync v0.15.0
24-
google.golang.org/grpc v1.74.2
25-
google.golang.org/protobuf v1.36.6
20+
github.com/siderolabs/talos/pkg/machinery v1.11.3
21+
github.com/spf13/pflag v1.0.10
22+
github.com/stretchr/testify v1.11.1
23+
golang.org/x/sync v0.17.0
24+
google.golang.org/grpc v1.76.0
25+
google.golang.org/protobuf v1.36.10
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.34.1
28+
k8s.io/apiextensions-apiserver v0.34.1
29+
k8s.io/apimachinery v0.34.1
30+
k8s.io/apiserver v0.34.1
31+
k8s.io/client-go v0.34.1
32+
k8s.io/component-base v0.34.1
3333
k8s.io/klog/v2 v2.130.1
34-
k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738
35-
sigs.k8s.io/cluster-api v1.10.4
36-
sigs.k8s.io/controller-runtime v0.20.4
34+
k8s.io/utils bc988d571ff4
35+
sigs.k8s.io/cluster-api v1.11.2
36+
sigs.k8s.io/controller-runtime v0.22.4
3737
)
3838

3939
require (

0 commit comments

Comments
 (0)