Skip to content
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

Slow post-action after v4 #878

Closed
2 of 5 tasks
TrygveUrdahl opened this issue Oct 24, 2023 · 18 comments · May be fixed by #907
Closed
2 of 5 tasks

Slow post-action after v4 #878

TrygveUrdahl opened this issue Oct 24, 2023 · 18 comments · May be fixed by #907
Assignees
Labels
bug Something isn't working

Comments

@TrygveUrdahl
Copy link

TrygveUrdahl commented Oct 24, 2023

Description:
The post-action step for this action seems to have become much slower after version 4.0.0 was released.
In the two included images, the only major difference should be the version of actions/setup-node.

Before:
image

After:
image

Action version:
Using actions/setup-node@v4 15 hours after 4.0.0 was released.

Platform:

  • Ubuntu
  • macOS
  • Windows

Runner type:

  • Hosted
  • Self-hosted

Tools version:
Node 18.18.2, and Yarn@4.0.0.

@TrygveUrdahl TrygveUrdahl added bug Something isn't working needs triage labels Oct 24, 2023
@TrygveUrdahl
Copy link
Author

I noticed that my workflow files didn't specify what node version to use for this workflow through any node-version or node-version-file. By adding that, and upgrading my project to use node 20, this issue seems to go away.

@nikolai-laevskii
Copy link
Contributor

Thank you for detailed description of the issue! We'll investigate it and come back with details.

@panva
Copy link
Contributor

panva commented Oct 25, 2023

I noticed that my workflow files didn't specify what node version to use for this workflow through any node-version or node-version-file. By adding that, and upgrading my project to use node 20, this issue seems to go away.

My workflows do always specify node-version but the post-action is slow as well.

I also have a flow log here which despite requesting lts/iron resolved 20.8.1 which isn't lts/iron. This particular setup-node use is from a reused worflow, when setup-node is used outside of a reused workflow the correct 20.9.0 is resolved.

@bodinsamuel
Copy link

@ledermann
Copy link

Same here in multiple projects using JS with Yarn. The Post Setup Node.js job slows down from a few seconds to about 2:20 minutes after upgrading to v4.

It seems to me that this only happens when JS dependencies have been updated. Re-running the job (which causes a cache hit) is fast again - perhaps because the cache doesn't need to be saved.

My conclusion: Saving the cache is significantly slower with v4 than with v3.

@ari-becker
Copy link

Noticing this as well because I have an aggressive timeout-minutes: 1 on my actions/setup-node step, which is now causing many of my builds to fail.

I concur with @ledermann that the issue is somewhere in cache-saving.

With a cache hit, the post-action takes 0s as expected:

image

Without a cache hit, when trying to save the cache, the post-action times out:

image

@eregon
Copy link

eregon commented Nov 7, 2023

See ruby/setup-ruby#543 which explains a possible cause and fix.

@jraoult
Copy link

jraoult commented Nov 8, 2023

And here's the fix: ruby/setup-ruby@036ef45 that should probably be ported to setup-node

sitek94 added a commit to sitek94/pnpm-monorepo that referenced this issue Nov 26, 2023
sitek94 added a commit to sitek94/pnpm-monorepo that referenced this issue Nov 26, 2023
sitek94 added a commit to sitek94/pnpm-monorepo that referenced this issue Nov 26, 2023
* revert setup-node action to v3 because of slow post action step

see issue:
actions/setup-node#878

* fix build commands
xiniria added a commit to xiniria/setup-node that referenced this issue Nov 27, 2023
xiniria added a commit to xiniria/setup-node that referenced this issue Nov 27, 2023
@xiniria
Copy link

xiniria commented Nov 27, 2023

@nikolai-laevskii I opened a PR in #907 that applies the same fix as https://github.com/ruby/setup-ruby (issue ruby/setup-ruby#543, PR ruby/setup-ruby#546), could you take a look at it?

@nrutman
Copy link

nrutman commented Dec 1, 2023

I'm also experiencing this on Node 18.

@xiniria
Copy link

xiniria commented Dec 4, 2023

I'm also experiencing this on Node 18.

@nrutman Actually this issue does not depend on the Node version you're using, but rather the Node version that the GitHub Action runner uses itself (in this case, the runner for @actions/http-client, used by @actions/cache, itself used by @actions/setup-node). We have no control over this other than downgrading to v3 of the action.

@dmitry-shibanov
Copy link
Contributor

Hello everyone. We've merged the fix for the issue. Could you please try to use actions/setup-node@main to confirm that it works as expected?

uncenter added a commit to uncenter/uncenter.dev that referenced this issue Dec 13, 2023
@uncenter
Copy link

Made a typo in that commit 😅 . I'll let you know if it appears to be working or not. It doesn't always have the issue but I'll try to run the action a few times to make sure.
Screenshot 2023-12-13 at 06 48 17 (Arc)

@TrygveUrdahl
Copy link
Author

Hello everyone. We've merged the fix for the issue. Could you please try to use actions/setup-node@main to confirm that it works as expected?

Hi! Yeah, from some quick tests it seems to work better now.

colinrotherham added a commit to alphagov/govuk-frontend that referenced this issue Dec 14, 2023
@colinrotherham
Copy link

@dmitry-shibanov Just confirming that the fix has worked for us too

We only really noticed it on Windows where all those tiny node_modules really affect performance:

Before

Windows cache restore time before (5m 38s)

After

Windows cache restore time after (1m 46s)

@kireerik
Copy link

@dmitry-shibanov Can you release the changes?

@aparnajyothi-y
Copy link
Contributor

Hello everyone. We released the changes yesterday.

For now I am going to close the issue. If you have any concerns feel free to ping us.

@r-dev-limited
Copy link

r-dev-limited commented Feb 3, 2024

  • I am using v4 with node 20. And it basically hangs forever, any idea how to fix it ?

Issue was related to cmd failing, and for some reason NODE action hanged...once I fixed other issue, it works again. SRY to bother

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.