From ec87a894688b25b77652b44a6b4ee44b3801f2fd Mon Sep 17 00:00:00 2001 From: Rowan Smith Date: Thu, 18 Jun 2026 13:42:24 +1000 Subject: [PATCH] ubuntu22 > ubuntu24 I noticed the homebrew builds were way out of date so looked at a run log. `brew doctor` fails because it needs glibc newer than 2.35 which is what ubuntu 22 has. Changed the os to ubuntu 24 (glibc 2.39) and ran a duplicate of the workflow on a test repo and it no longer failed. --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index fa27387..bc4867f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -15,7 +15,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-22.04, macos-15] + os: [ubuntu-24.04, macos-15] runs-on: ${{ matrix.os }}