From da83b302e2878df2c62645331a02d07054cd9a92 Mon Sep 17 00:00:00 2001 From: Sergey Kaplun Date: Thu, 22 Jan 2026 18:33:22 +0300 Subject: [PATCH] ci: bump Ubuntu version in reusable_testing This commit bumps the Ubuntu distro version up to 24.04 (noble) in reusable_testing workflow, since Ubuntu 22.04 (jammy) leads to dpkg conflicts in the integrational testing with Tarantool. Needed for tarantool/tarantool#11220 --- .github/workflows/reusable_testing.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/reusable_testing.yml b/.github/workflows/reusable_testing.yml index 7f8e78a..06f0dce 100644 --- a/.github/workflows/reusable_testing.yml +++ b/.github/workflows/reusable_testing.yml @@ -5,13 +5,13 @@ on: inputs: artifact_name: description: The name of the Tarantool build artifact - default: ubuntu-focal + default: ubuntu-noble required: false type: string jobs: run_tests: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - name: Clone the expirationd module uses: actions/checkout@v4