From 4aeadc635a832479abb070aa3e6c9bc0a2985679 Mon Sep 17 00:00:00 2001 From: Roberto Scolaro Date: Fri, 6 Dec 2024 11:15:53 +0000 Subject: [PATCH] workaround Signed-off-by: Roberto Scolaro --- .github/workflows/ci.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index d17c9d6050..5e960884c3 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -116,9 +116,19 @@ jobs: runs-on: ubuntu-latest container: image: ${{ needs.builder.outputs.builder_image }} + volumes: + - '/node20217:/node20217:rw,rshared' + - '/node20217:/__e/node20:ro,rshared' env: ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true steps: + - name: install nodejs20glibc2.17 + run: | + yum install curl -yyq + curl -LO https://unofficial-builds.nodejs.org/download/release/v20.9.0/node-v20.9.0-linux-x64-glibc-217.tar.xz + tar -xf node-v20.9.0-linux-x64-glibc-217.tar.xz --strip-components 1 -C /node20217 + ldd /__e/node20/bin/node + - name: Checkout Sysdig uses: actions/checkout@v3 with: