From 145f98b53a90abbf3c191e18387f35513c0c99ee Mon Sep 17 00:00:00 2001 From: Stefan Prodan Date: Thu, 18 Dec 2025 11:13:58 +0200 Subject: [PATCH 1/2] ci: Move release to large runners Signed-off-by: Stefan Prodan --- .github/workflows/release.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index c1f91814..a9e9e2b1 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -13,7 +13,9 @@ jobs: hashes: ${{ steps.slsa.outputs.hashes }} image_url: ${{ steps.slsa.outputs.image_url }} image_digest: ${{ steps.slsa.outputs.image_digest }} - runs-on: ubuntu-latest + runs-on: + group: "Default Larger Runners" + labels: ubuntu-latest-16-cores permissions: contents: write # needed to write releases id-token: write # needed for keyless signing From 7459e457bf9543d3f733805acd157ca9b3c32af8 Mon Sep 17 00:00:00 2001 From: Stefan Prodan Date: Thu, 18 Dec 2025 11:15:02 +0200 Subject: [PATCH 2/2] Run conformance tests for Kubernetes 1.35.0 Signed-off-by: Stefan Prodan --- .github/workflows/conformance.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/conformance.yaml b/.github/workflows/conformance.yaml index b56da5ff..10ce68f9 100644 --- a/.github/workflows/conformance.yaml +++ b/.github/workflows/conformance.yaml @@ -19,7 +19,7 @@ jobs: matrix: # Keep this list up-to-date with https://endoflife.date/kubernetes # Build images with https://github.com/fluxcd/flux-benchmark/actions/workflows/build-kind.yaml - KUBERNETES_VERSION: [1.32.1, 1.33.0, 1.34.1] + KUBERNETES_VERSION: [1.33.0, 1.34.1, 1.35.0] fail-fast: false steps: - name: Checkout