From 9d29e355e31058fe4809e798472e56e177483975 Mon Sep 17 00:00:00 2001 From: Achim Fritz Date: Wed, 8 Jan 2025 20:40:00 +0100 Subject: [PATCH] [TASK] fix ubuntu version to 22.04 ubuntu-latest points to 24.04 now but this leads to network communication errors between containers on github. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f38a342d..42b2621a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ jobs: testsuite: name: all tests - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 strategy: matrix: php: [ '7.4', '8.0', '8.1' ]