increase libuv-workaround timeout to 100ms (#880)

This should fix
https://github.com/astral-sh/setup-uv/issues/686#issuecomment-4389301919
This commit is contained in:
Kevin Stillhammer
2026-05-13 08:28:39 +02:00
committed by GitHub
parent a81585cbb0
commit 7568f55a9a
4 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -20,8 +20,8 @@ export async function run(): Promise<void> {
} else {
core.info("save-cache is false. Skipping save cache step.");
}
// https://github.com/nodejs/node/issues/56645#issuecomment-3077594952
await new Promise((resolve) => setTimeout(resolve, 50));
// https://github.com/nodejs/node/issues/56645#issuecomment-3924958861
await new Promise((resolve) => setTimeout(resolve, 100));
// node will stay alive if any promises are not resolved,
// which is a possibility if HTTP requests are dangling