Skip to content

Commit 9ec96e1

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

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
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
@@ -132,7 +132,7 @@ jobs:
132132
done
133133
continue-on-error: true
134134
- name: checkout
135-
uses: actions/checkout@v5
135+
uses: actions/checkout@v6
136136
- name: Unshallow
137137
run: |
138138
git fetch --prune --unshallow
@@ -193,7 +193,7 @@ jobs:
193193
done
194194
continue-on-error: true
195195
- name: checkout
196-
uses: actions/checkout@v5
196+
uses: actions/checkout@v6
197197
- name: Unshallow
198198
run: |
199199
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

@@ -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: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,28 +3,28 @@ module github.com/siderolabs/cluster-api-bootstrap-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 (
9-
github.com/Masterminds/semver/v3 v3.3.0
9+
github.com/Masterminds/semver/v3 v3.4.0
1010
github.com/evanphx/json-patch v5.9.11+incompatible
1111
github.com/go-logr/logr v1.4.3
1212
github.com/google/go-cmp v0.7.0
1313
github.com/siderolabs/crypto v0.6.4
1414
github.com/siderolabs/go-pointer v1.0.1
1515
github.com/siderolabs/talos/pkg/machinery v1.12.0-beta.0
16-
github.com/spf13/pflag v1.0.7
16+
github.com/spf13/pflag v1.0.10
1717
github.com/stretchr/testify v1.11.1
1818
golang.org/x/sys v0.38.0
19-
gopkg.in/yaml.v2 v2.4.0
20-
k8s.io/api v0.32.3
21-
k8s.io/apiextensions-apiserver v0.32.3
22-
k8s.io/apimachinery v0.32.3
23-
k8s.io/client-go v0.32.3
24-
k8s.io/component-base v0.32.3
19+
gopkg.in/yaml.v3 v3.0.1
20+
k8s.io/api v0.34.2
21+
k8s.io/apiextensions-apiserver v0.34.2
22+
k8s.io/apimachinery v0.34.2
23+
k8s.io/client-go v0.34.2
24+
k8s.io/component-base v0.34.2
2525
k8s.io/klog/v2 v2.130.1
26-
sigs.k8s.io/cluster-api v1.10.4
27-
sigs.k8s.io/controller-runtime v0.20.4
26+
sigs.k8s.io/cluster-api v1.11.3
27+
sigs.k8s.io/controller-runtime v0.22.4
2828
)
2929

3030
require (

0 commit comments

Comments
 (0)