From 7777e3c106ba4f83bc4f7a49b8b91df7293ff143 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steffen=20Schu=CC=88mann?= Date: Sat, 27 Dec 2025 16:50:11 +0100 Subject: [PATCH] Clarify legacy compiler tests in build_cmake.yml --- .github/workflows/build_cmake.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_cmake.yml b/.github/workflows/build_cmake.yml index a4c8d0f..23939b0 100644 --- a/.github/workflows/build_cmake.yml +++ b/.github/workflows/build_cmake.yml @@ -199,8 +199,13 @@ jobs: steps: # Use older checkout for GCC 5-6 (ancient glibc doesn't support Node 20) - - name: Checkout code - uses: actions/checkout@${{ matrix.checkout_version }} + - name: Checkout code (v1 for old glibc) + if: matrix.checkout_version == 'v1' + uses: actions/checkout@v1 + + - name: Checkout code (v4 for modern containers) + if: matrix.checkout_version == 'v4' + uses: actions/checkout@v4 # Fix Debian Buster EOL repository issues (GCC 7-8, Clang 7-9) - name: Fix Debian repositories for EOL releases