From 75420e196a7dbb14fa7b66fb179b7d053e00f2bb Mon Sep 17 00:00:00 2001 From: Mario Zechner Date: Sat, 26 Jul 2025 01:44:17 +0200 Subject: [PATCH] Switch C++ compatibility workflow to Ubuntu 22.04 Ubuntu latest (24.04) shows memory corruption in binary parser that doesn't reproduce locally. Try older Ubuntu version. --- .github/workflows/spine-cpp-compatibility.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/spine-cpp-compatibility.yml b/.github/workflows/spine-cpp-compatibility.yml index 75c7c9945..aa9448b69 100644 --- a/.github/workflows/spine-cpp-compatibility.yml +++ b/.github/workflows/spine-cpp-compatibility.yml @@ -9,7 +9,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, macos-latest] + os: [ubuntu-22.04, macos-latest] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4