Skip to content

Commit 539d75e

Browse files
chore(deps): update node.js to v22.17.1 (#852)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [node](https://nodejs.org) ([source](https://redirect.github.com/nodejs/node)) | | patch | `22.17.0` -> `22.17.1` | | [node](https://nodejs.org) ([source](https://redirect.github.com/nodejs/node)) | volta | patch | [`22.17.0` -> `22.17.1`](https://renovatebot.com/diffs/npm/node/v22.17.0/v22.17.1) | --- ### Release Notes <details> <summary>nodejs/node (node)</summary> ### [`v22.17.1`](https://redirect.github.com/nodejs/node/compare/v22.17.0...v22.17.1) [Compare Source](https://redirect.github.com/nodejs/node/compare/v22.17.0...v22.17.1) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "every weekday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/apify/apify-cli). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4yMy4yIiwidXBkYXRlZEluVmVyIjoiNDEuMjMuMiIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6W119--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Vlad Frangu <me@vladfrangu.dev>
1 parent 5fc2a2f commit 539d75e

File tree

11 files changed

+252
-207
lines changed

11 files changed

+252
-207
lines changed

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
22.17.0
1+
22.17.1

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@
151151
"vitest": "^3.0.0"
152152
},
153153
"volta": {
154-
"node": "22.17.0",
154+
"node": "22.17.1",
155155
"yarn": "4.9.2"
156156
},
157157
"packageManager": "yarn@4.9.2",

test/__setup__/consts.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export const TEST_TIMEOUT = 120_000 * (process.platform === 'win32' ? 3 : 1);

test/api/commands/call.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import { runCommand } from '../../../src/lib/command-framework/apify-command.js'
44
import { getLocalKeyValueStorePath } from '../../../src/lib/utils.js';
55
import { waitForBuildToFinishWithTimeout } from '../../__setup__/build-utils.js';
66
import { testUserClient } from '../../__setup__/config.js';
7+
import { TEST_TIMEOUT } from '../../__setup__/consts.js';
78
import { safeLogin, useAuthSetup } from '../../__setup__/hooks/useAuthSetup.js';
89
import { useTempPath } from '../../__setup__/hooks/useTempPath.js';
910
import { useUniqueId } from '../../__setup__/hooks/useUniqueId.js';
@@ -82,7 +83,7 @@ describe('[api] apify call', () => {
8283
.actor(actorId)
8384
.get()
8485
.then((actor) => actor!.id);
85-
}, 120_000);
86+
}, TEST_TIMEOUT);
8687

8788
afterAll(async () => {
8889
await testUserClient.actor(actorId).delete();

0 commit comments

Comments
 (0)