From 0d08d61d7bfa6d95e720669f01e499e1bf02059a Mon Sep 17 00:00:00 2001 From: Kei Okada Date: Thu, 5 Dec 2024 22:48:49 +0900 Subject: [PATCH] .github/workflows/config.yml: install node 20 for github actions, see https://github.com/easybuilders/easybuild-containers/pull/35/files#diff-d2c7f3409a7dff7c9e50b62e2b66152aee6c7189b0d4901dc0a06ee7f25fc1b1 --- .github/workflows/config.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/config.yml b/.github/workflows/config.yml index b27ecae4..202252a4 100644 --- a/.github/workflows/config.yml +++ b/.github/workflows/config.yml @@ -49,6 +49,11 @@ jobs: git config --global --add safe.directory $GITHUB_WORKSPACE fi + - name: Usable Node 20 required for GitHub actions. The one from GitHub doesn't work with this containers GLibc + run: | + sudo apt install -y curl + curl -sL https://unofficial-builds.nodejs.org/download/release/v20.9.0/node-v20.9.0-linux-x64-glibc-217.tar.xz | tar -xJ --strip-components 1 -C /tmp/node20217 + - name: Chcekout uses: actions/checkout@v4