From be37a436f7e07f39cb9cf3f1106dbbf05efc6dc2 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 --- .github/workflows/config.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/config.yml b/.github/workflows/config.yml index b27ecae4..d5768eca 100644 --- a/.github/workflows/config.yml +++ b/.github/workflows/config.yml @@ -49,6 +49,10 @@ 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: | + 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 /node20217 + - name: Chcekout uses: actions/checkout@v4