You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
and run into /home/github/actions-runner/externals/node20/bin/node: /lib/arm-linux-gnueabihf/libstdc++.so.6: versionGLIBCXX_3.4.26' not found (required by /home/github/actions-runner/externals/node20/bin/node)`
as workaround I use actions/checkout@v3 This works properly.
Do you have a hint how to solve v4 on my Raspberry ?
The text was updated successfully, but these errors were encountered:
Having the same issue on a self-hosted debian runner and am using your v3 downgrade for now.
The issue seems to be the node version. I believe if you want to fix it, you would need to install node v20 on your pi.
If you are fine building your packages with v20 you could probably just place the setup-node action above it or install v20 in the Dockerfile of your Runner.
# install node v20 via nodesource (untested; copied from internet)
curl -sL https://deb.nodesource.com/setup_20.x | bash -
apt-get install -y nodejs
Else you would need multiple versions of node of the pi, which is slightly annoying. Maybe installing node v20 in the Dockerfile via https://deb.nodesource.com/setup_20.x is an option and then after checkout using actions/setup-node to switch to the node version your code expects would work.
Hi,
I use it on a self hosted Linux arm runner (Raspberry Pi 4)
and run into
/home/github/actions-runner/externals/node20/bin/node: /lib/arm-linux-gnueabihf/libstdc++.so.6: version
GLIBCXX_3.4.26' not found (required by /home/github/actions-runner/externals/node20/bin/node)`as workaround I use
actions/checkout@v3
This works properly.Do you have a hint how to solve v4 on my Raspberry ?
The text was updated successfully, but these errors were encountered: