Skip to content

Commit 8db6da8

Browse files
chore: update dependencies
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 3fb1f3e commit 8db6da8

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
done
5656
continue-on-error: true
5757
- name: checkout
58-
uses: actions/checkout@v5
58+
uses: actions/checkout@v6
5959
- name: Unshallow
6060
run: |
6161
git fetch --prune --unshallow
@@ -128,7 +128,7 @@ jobs:
128128
done
129129
continue-on-error: true
130130
- name: checkout
131-
uses: actions/checkout@v5
131+
uses: actions/checkout@v6
132132
- name: Unshallow
133133
run: |
134134
git fetch --prune --unshallow
@@ -189,7 +189,7 @@ jobs:
189189
done
190190
continue-on-error: true
191191
- name: checkout
192-
uses: actions/checkout@v5
192+
uses: actions/checkout@v6
193193
- name: Unshallow
194194
run: |
195195
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.20.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: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/siderolabs/cluster-api-control-plane-provider-talos
33
go 1.25.3
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
@@ -21,19 +21,19 @@ require (
2121
github.com/spf13/pflag v1.0.10
2222
github.com/stretchr/testify v1.11.1
2323
golang.org/x/sync v0.18.0
24-
google.golang.org/grpc v1.76.0
24+
google.golang.org/grpc v1.77.0
2525
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.2
28+
k8s.io/apiextensions-apiserver v0.34.2
29+
k8s.io/apimachinery v0.34.2
30+
k8s.io/apiserver v0.34.2
31+
k8s.io/client-go v0.34.2
32+
k8s.io/component-base v0.34.2
3333
k8s.io/klog/v2 v2.130.1
3434
k8s.io/utils v0.0.0-20251002143259-bc988d571ff4
35-
sigs.k8s.io/cluster-api v1.10.4
36-
sigs.k8s.io/controller-runtime v0.20.4
35+
sigs.k8s.io/cluster-api v1.11.3
36+
sigs.k8s.io/controller-runtime v0.22.4
3737
)
3838

3939
require (

0 commit comments

Comments
 (0)