Skip to content

Commit

Permalink
chore(images): pin ubuntu version (#12131)
Browse files Browse the repository at this point in the history
## 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


actions/runner-images#10636 (comment)
#5945
#11826

<!--
Uncomment the above section to explicitly set a [`> Changelog:` entry
here](https://github.com/kumahq/kuma/blob/master/CONTRIBUTING.md#submitting-a-patch)?
-->

Signed-off-by: Lukasz Dziedziak <[email protected]>
  • Loading branch information
lukidzi authored Nov 28, 2024
1 parent 4bd2288 commit c13b539
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-test-distribute.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
distributions:
needs: ["check", "test", "test_e2e", "test_e2e_env"]
if: ${{ always() }}
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
steps:
- name: "Halt due to previous failures"
if: ${{ contains(needs.*.result, 'failure')|| contains(needs.*.result, 'cancelled') }}
Expand Down

0 comments on commit c13b539

Please sign in to comment.