Skip to content

Commit c103502

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

File tree

4 files changed

+20
-20
lines changed

4 files changed

+20
-20
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 3 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: |
@@ -110,7 +110,7 @@ jobs:
110110
steps:
111111
- name: gather-system-info
112112
id: system-info
113-
uses: kenchan0130/actions-system-info@v1.3.1
113+
uses: kenchan0130/actions-system-info@v1.4.0
114114
continue-on-error: true
115115
- name: print-system-info
116116
run: |
@@ -172,7 +172,7 @@ jobs:
172172
steps:
173173
- name: gather-system-info
174174
id: system-info
175-
uses: kenchan0130/actions-system-info@v1.3.1
175+
uses: kenchan0130/actions-system-info@v1.4.0
176176
continue-on-error: true
177177
- name: print-system-info
178178
run: |

.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.1.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.19.0-labs
22

33
# Meta args applied to stage base names.
44

@@ -62,7 +62,7 @@ RUN --mount=type=cache,target=/.cache go test -race -ldflags "${GO_LDFLAGS}" -co
6262
FROM scratch AS integration-test
6363
COPY --from=integration-test-build /src/integration.test /integration.test
6464

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

go.mod

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -3,27 +3,27 @@ module github.com/siderolabs/cluster-api-bootstrap-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/evanphx/json-patch v5.9.11+incompatible
1010
github.com/go-logr/logr v1.4.3
1111
github.com/google/go-cmp v0.7.0
12-
github.com/siderolabs/crypto v0.6.3
12+
github.com/siderolabs/crypto v0.6.4
1313
github.com/siderolabs/go-pointer v1.0.1
14-
github.com/siderolabs/talos/pkg/machinery v1.11.0
15-
github.com/spf13/pflag v1.0.7
16-
github.com/stretchr/testify v1.10.0
17-
golang.org/x/sys v0.35.0
18-
gopkg.in/yaml.v2 v2.4.0
19-
k8s.io/api v0.32.3
20-
k8s.io/apiextensions-apiserver v0.32.3
21-
k8s.io/apimachinery v0.32.3
22-
k8s.io/client-go v0.32.3
23-
k8s.io/component-base v0.32.3
14+
github.com/siderolabs/talos/pkg/machinery v1.11.2
15+
github.com/spf13/pflag v1.0.10
16+
github.com/stretchr/testify v1.11.1
17+
golang.org/x/sys v0.36.0
18+
gopkg.in/yaml.v3 v3.0.1
19+
k8s.io/api v0.34.1
20+
k8s.io/apiextensions-apiserver v0.34.1
21+
k8s.io/apimachinery v0.34.1
22+
k8s.io/client-go v0.34.1
23+
k8s.io/component-base v0.34.1
2424
k8s.io/klog/v2 v2.130.1
25-
sigs.k8s.io/cluster-api v1.10.4
26-
sigs.k8s.io/controller-runtime v0.20.4
25+
sigs.k8s.io/cluster-api v1.11.1
26+
sigs.k8s.io/controller-runtime v0.22.1
2727
)
2828

2929
require (

0 commit comments

Comments
 (0)