From 3097340ba48983ccb6e9712fbf36668257af4b64 Mon Sep 17 00:00:00 2001 From: Florian Forster Date: Thu, 23 Nov 2023 16:25:52 +0100 Subject: [PATCH] Revert "GitHub actions: upgrade to actions/checkout@v4" This reverts commit 8a451bca30011fbfd249bbd3aa78922cb03aef2d. Some older platforms use an incompatible glibc version. --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4e3d0a51a..3b7cc4606 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -45,7 +45,7 @@ jobs: # this env var picked up by valgrind during make check phase VALGRIND_OPTS: "--errors-for-leak-kinds=definite" steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v2 - run: type pkg-config - run: pkg-config --list-all | sort -u - name: Generate configure script @@ -96,7 +96,7 @@ jobs: CONFIGURE_FLAGS: ${{ matrix.config_flags }} VALGRIND_OPTS: "--errors-for-leak-kinds=definite" steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v2 - run: type pkg-config - run: pkg-config --list-all | sort -u - name: Generate configure script -- 2.47.3