-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Request timeout when attempting to download directly from Node #1006
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Hello @rwader-swi, Thank you for creating this issue and we will look into it :) |
I get timeouts no matter what, can't download anything.
I can ping
name: Build and Deploy Test Version
on:
push:
branches:
- dev-branch
jobs:
build_deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: "dev-branch"
- uses: actions/setup-node@v4
with:
node-version: 14
- name: Install dependencies
run: npm install
- name: Build app
run: npm run build
- name: Deploy to server
uses: appleboy/scp-action@master
with:
host: ${{ secrets.SERVER_HOST }}
username: ${{ secrets.SERVER_USERNAME }}
key: ${{ secrets.SSH_PRIVATE_KEY }}
source: dist/
target: /yacht/AppData/Config/Nginx/www/jtimar-lite/dist
|
Yeah same in my case |
Hello @rwader-swi, @alirezaalavi87 We have tried to reproduce the issue from our local and setup-action is successfully downloading the node-version: 20 or 14 from the node official website without any timeout issue. Please find the screenshots for reference and share the repro link to further investigate the issue as we are unable to reproduce the error from our end. ![]() ![]() |
Hello @rwader-swi, Please share the repro link to investigate the issue further as we are unable to reproduce the issue. |
Hello, if this can help someone, we had the same issue on azure devops pipeline running the agent self-hosted behind a company proxy. We've solved configuring the environment variable HTTPS_PROXY on the pipeline and solved for us. Maybe is not exactly your case but in case this can help others i post it here. |
It is working fine now, I can't reproduce it. but like @oftravesset it might have something to do with proxies and internet sanctions. |
Hello @rwader-swi, we are closing this issue for now due to inactivity. Please feel free to reach out if the issue persists, and we can reopen it. Hello @alirezaalavi87, thank you for confirming that you are unable to reproduce the issue. |
Description:

github-scripts@v7
still run, butupload-artifacts
action sometimes give issue.setup-node
, whether it is caching node or caching the action itself, or attempting to download directly. Hence, we aren't sure how to debug it. Seems like a cache issue to me because it happened after we re-deployed our self-hosted github runners.node
cache in/opt/hostedtoolcache
from our self-hosted runner, but in that case it passed 🙂Action version:
setup-node@v4
node version: 20
Platform:
Runner type:
Tools version:
node-version: 20
Repro steps:
Expected behavior:
A description of what you expected to happen.
Actual behavior:
A description of what is actually happening.
The text was updated successfully, but these errors were encountered: