From c103502b0c84997e528dba36b2e2efb6eada4aab Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 6 Oct 2025 03:51:23 +0000 Subject: [PATCH] chore: update dependencies Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/ci.yaml | 6 +++--- .github/workflows/stale.yml | 2 +- Dockerfile | 4 ++-- go.mod | 28 ++++++++++++++-------------- 4 files changed, 20 insertions(+), 20 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index c453e15..bdf9ec5 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -32,7 +32,7 @@ jobs: steps: - name: gather-system-info id: system-info - uses: kenchan0130/actions-system-info@v1.3.1 + uses: kenchan0130/actions-system-info@v1.4.0 continue-on-error: true - name: print-system-info run: | @@ -110,7 +110,7 @@ jobs: steps: - name: gather-system-info id: system-info - uses: kenchan0130/actions-system-info@v1.3.1 + uses: kenchan0130/actions-system-info@v1.4.0 continue-on-error: true - name: print-system-info run: | @@ -172,7 +172,7 @@ jobs: steps: - name: gather-system-info id: system-info - uses: kenchan0130/actions-system-info@v1.3.1 + uses: kenchan0130/actions-system-info@v1.4.0 continue-on-error: true - name: print-system-info run: | diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index a6bebcf..03b3020 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -15,7 +15,7 @@ jobs: - ubuntu-latest steps: - name: Close stale issues and PRs - uses: actions/stale@v9.1.0 + uses: actions/stale@v10.1.0 with: close-issue-message: This issue was closed because it has been stalled for 7 days with no activity. days-before-issue-close: "5" diff --git a/Dockerfile b/Dockerfile index e7b33d9..e92bc48 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -# syntax = docker/dockerfile-upstream:1.14.1-labs +# syntax = docker/dockerfile-upstream:1.19.0-labs # Meta args applied to stage base names. @@ -62,7 +62,7 @@ RUN --mount=type=cache,target=/.cache go test -race -ldflags "${GO_LDFLAGS}" -co FROM scratch AS integration-test COPY --from=integration-test-build /src/integration.test /integration.test -FROM --platform=${BUILDPLATFORM} alpine:3.21 AS release-build +FROM --platform=${BUILDPLATFORM} alpine:3.22 AS release-build ADD https://github.com/kubernetes-sigs/kustomize/releases/download/kustomize%2Fv4.1.0/kustomize_v4.1.0_linux_amd64.tar.gz . RUN tar -xf kustomize_v4.1.0_linux_amd64.tar.gz -C /usr/local/bin && rm kustomize_v4.1.0_linux_amd64.tar.gz COPY ./config ./config diff --git a/go.mod b/go.mod index 2d6573e..856acfc 100644 --- a/go.mod +++ b/go.mod @@ -3,27 +3,27 @@ module github.com/siderolabs/cluster-api-bootstrap-provider-talos go 1.24.0 // compatibility with kube-apiserver v0.32.3, should be dropped once kube-apiserver dependency is updated -replace github.com/google/cel-go => github.com/google/cel-go v0.22.0 +replace github.com/google/cel-go => github.com/google/cel-go v0.26.1 require ( github.com/evanphx/json-patch v5.9.11+incompatible github.com/go-logr/logr v1.4.3 github.com/google/go-cmp v0.7.0 - github.com/siderolabs/crypto v0.6.3 + github.com/siderolabs/crypto v0.6.4 github.com/siderolabs/go-pointer v1.0.1 - github.com/siderolabs/talos/pkg/machinery v1.11.0 - github.com/spf13/pflag v1.0.7 - github.com/stretchr/testify v1.10.0 - golang.org/x/sys v0.35.0 - gopkg.in/yaml.v2 v2.4.0 - k8s.io/api v0.32.3 - k8s.io/apiextensions-apiserver v0.32.3 - k8s.io/apimachinery v0.32.3 - k8s.io/client-go v0.32.3 - k8s.io/component-base v0.32.3 + github.com/siderolabs/talos/pkg/machinery v1.11.2 + github.com/spf13/pflag v1.0.10 + github.com/stretchr/testify v1.11.1 + golang.org/x/sys v0.36.0 + gopkg.in/yaml.v3 v3.0.1 + k8s.io/api v0.34.1 + k8s.io/apiextensions-apiserver v0.34.1 + k8s.io/apimachinery v0.34.1 + k8s.io/client-go v0.34.1 + k8s.io/component-base v0.34.1 k8s.io/klog/v2 v2.130.1 - sigs.k8s.io/cluster-api v1.10.4 - sigs.k8s.io/controller-runtime v0.20.4 + sigs.k8s.io/cluster-api v1.11.1 + sigs.k8s.io/controller-runtime v0.22.1 ) require (