From f9d1029ea3e82a846f74195facf370909bf0840d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Fri, 12 Jul 2024 15:55:45 +0200 Subject: [PATCH] Fix Linux with GCC 4.8 CI Complains in the post-ckeckout step: ``` Post job cleanup. /usr/bin/docker exec f32fc88d37a181d710e2802cbad0646c9780efe4af35a093fe68d09d8201a74e sh -c "cat /etc/*release | grep ^ID" /__e/node20/bin/node: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.28' not found (required by /__e/node20/bin/node) ``` --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2fd5d85..25404cb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -159,6 +159,10 @@ jobs: runs-on: ubuntu-latest container: image: ubuntu:18.04 + # Work around an issue where the node from actions/checkout is too new + # to run inside the old container image. + env: + ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true steps: - name: install dependencies run: |