From 3e14297af383c4ef32c637e7f854b7ac1b9a157f Mon Sep 17 00:00:00 2001 From: Lukasz Dziedziak Date: Thu, 28 Nov 2024 14:18:49 +0100 Subject: [PATCH] chore(images): pin ubuntu version (#12130) ## Motivation The `kuma-init` image fails to build on Ubuntu versions newer than 22. To avoid this issue, we plan to use an older runner image. This problem does not occur on the `master` branch because we use a different base image for `kuma-init`. Additionally, on `release-2.9`, we are already using Ubuntu 22.04. ## Implementation information Use ubuntu 22 ## Supporting documentation https://github.com/actions/runner-images/issues/10636#issuecomment-2397720931 https://github.com/kumahq/kuma/pull/5945 https://github.com/kumahq/kuma/pull/11826 Signed-off-by: Lukasz Dziedziak --- .github/workflows/_build_publish.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/_build_publish.yaml b/.github/workflows/_build_publish.yaml index 472ecf238b3a..794b54b2f043 100644 --- a/.github/workflows/_build_publish.yaml +++ b/.github/workflows/_build_publish.yaml @@ -88,7 +88,7 @@ jobs: run: | make publish/pulp build-images: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 # pining to this version since we use older base image for kuma-init and we don't want to change it since it can break users environment timeout-minutes: 15 strategy: fail-fast: false