From 584430799313dc1d0abc359c41a9c14bd5f3aabe Mon Sep 17 00:00:00 2001 From: Luiz Carvalho Date: Fri, 8 Sep 2023 16:18:48 -0400 Subject: [PATCH] Add e2e test for k8s 1.28, remove 1.24 Signed-off-by: Luiz Carvalho --- .github/workflows/kind-e2e.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/kind-e2e.yaml b/.github/workflows/kind-e2e.yaml index d73c376fcc..29d8aed213 100644 --- a/.github/workflows/kind-e2e.yaml +++ b/.github/workflows/kind-e2e.yaml @@ -16,11 +16,12 @@ jobs: strategy: fail-fast: false # Keep running if one leg fails. matrix: + # Keep in sync with the list of supported releases: https://kubernetes.io/releases/ k8s-version: - - v1.24.x - v1.25.x - v1.26.x - v1.27.x + - v1.28.x uses: ./.github/workflows/reusable-e2e.yaml with: k8s-version: ${{ matrix.k8s-version }}