docs/checks/actions.md
Make sure the runner has access to actions service for GitHub.com or GitHub Enterprise Server
For GitHub.com
https://api.github.com for downloading actions.https://codeload.github.com for downloading actions tar.gz/zip.https://vstoken.actions.githubusercontent.com/_apis/.../ for requesting an access token.https://pipelines.actions.githubusercontent.com/_apis/.../ for receiving workflow jobs.https://results-receiver.actions.githubusercontent.com/.../ for reporting progress and uploading logs during a workflow job execution.NOTE: for the full list of domains that are required to be in the firewall allow list refer to the GitHub self-hosted runners requirements documentation.
These can by tested by running the following curl commands from your self-hosted runner machine:
curl -v https://api.github.com/zen
curl -v https://codeload.github.com/_ping
curl -v https://vstoken.actions.githubusercontent.com/_apis/health
curl -v https://pipelines.actions.githubusercontent.com/_apis/health
curl -v https://results-receiver.actions.githubusercontent.com/health
For GitHub Enterprise Server
https://[hostname]/api/v3 for downloading actions.https://codeload.[hostname]/_ping for downloading actions tar.gz/zip.https://[hostname]/_services/vstoken/_apis/.../ for requesting an access token.https://[hostname]/_services/pipelines/_apis/.../ for receiving workflow jobs.These can by tested by running the following curl commands from your self-hosted runner machine, replacing [hostname] with the hostname of your appliance, for instance github.example.com:
curl -v https://[hostname]/api/v3/zen
curl -v https://codeload.[hostname]/_ping
curl -v https://[hostname]/_services/vstoken/_apis/health
curl -v https://[hostname]/_services/pipelines/_apis/health
A common cause of this these connectivity issues is if your to GitHub Enterprise Server appliance is using the self-signed certificate that is enabled the first time your appliance is started. As self-signed certificates are not trusted by web browsers and Git clients, these clients (including the GitHub Actions runner) will report certificate warnings.
We recommend upload a certificate signed by a trusted authority to GitHub Enterprise Server, or enabling the built-in ]Let's Encrypt support.
X-GitHub-Request-IdX-GitHub-Request-Idx-vss-e2eidx-vss-e2eidx-vss-e2eidX-GitHub-Request-IdPlease check the network doc
If you are seeing System.Net.Http.HttpRequestException: The SSL connection could not be established, see inner exception. in the log, it means the runner can't connect to Actions service due to SSL handshake failure.
Please check the SSL cert doc
Contact GitHub Support if you have further questuons, or log an issue at https://github.com/actions/runner if you think it's a runner issue.