mirror of
https://github.com/actions/runner.git
synced 2025-12-10 12:36:23 +00:00
1.0 KiB
1.0 KiB
Node.js Connection Check
What is this check for?
Make sure the built-in node.js has access to GitHub.com or GitHub Enterprise Server.
The runner carries its own copy of node.js executable under <runner_root>/externals/node16/.
All javascript base Actions will get executed by the built-in node at <runner_root>/externals/node16/.
Not the
nodefrom$PATH
What is checked?
- Make HTTPS GET to https://api.github.com or https://myGHES.com/api/v3 using node.js, make sure it gets 200 response code.
How to fix the issue?
1. Check the common network issue
Please check the network doc
2. SSL certificate related issue
If you are seeing Https request failed due to SSL cert issue in the log, it means the node.js can't connect to the GitHub server due to SSL handshake failure.
Please check the SSL cert doc
Still not working?
Contact GitHub customer service or log an issue at https://github.com/actions/runner if you think it's a runner issue.