Skip to content

Commit 34d2544

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

File tree

4 files changed

+25
-25
lines changed

4 files changed

+25
-25
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

.github/workflows/stale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- ubuntu-latest
1616
steps:
1717
- name: Close stale issues and PRs
18-
uses: actions/stale@v9.1.0
18+
uses: actions/stale@v10.0.0
1919
with:
2020
close-issue-message: This issue was closed because it has been stalled for 7 days with no activity.
2121
days-before-issue-close: "5"

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.18.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: 16 additions & 16 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
1717
github.com/siderolabs/crypto v0.6.3
1818
github.com/siderolabs/gen v0.8.5
1919
github.com/siderolabs/go-retry v0.3.3
2020
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
21+
github.com/spf13/pflag v1.0.10
22+
github.com/stretchr/testify v1.11.1
23+
golang.org/x/sync v0.16.0
24+
google.golang.org/grpc v1.75.0
25+
google.golang.org/protobuf v1.36.8
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.0
28+
k8s.io/apiextensions-apiserver v0.34.0
29+
k8s.io/apimachinery v0.34.0
30+
k8s.io/apiserver v0.34.0
31+
k8s.io/client-go v0.34.0
32+
k8s.io/component-base v0.34.0
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 0af2bda4dd1d
35+
sigs.k8s.io/cluster-api v1.11.1
36+
sigs.k8s.io/controller-runtime v0.22.0
3737
)
3838

3939
require (

0 commit comments

Comments
 (0)