Skip to content

Commit e3452e4

Browse files
Merge branch 'main' into feature/add-unstructured-api-provider
2 parents 6ee0a3d + 0df6f89 commit e3452e4

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/integration-tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,9 @@ jobs:
150150
client: ${{ github.event_name == 'pull_request' && fromJSON('["server"]') || fromJSON('["library", "server"]') }}
151151
# Use Python 3.13 only on nightly schedule (daily latest client test), otherwise use 3.12
152152
python-version: ${{ github.event.schedule == '0 0 * * *' && fromJSON('["3.12", "3.13"]') || fromJSON('["3.12"]') }}
153-
node-version: [22]
153+
# Pinned to 22.22 due to node-fetch v2 "Premature close" regression in 22.23.0
154+
# (nodejs/node#63989). Unpin once a patched 22.x ships with nodejs/node#64004.
155+
node-version: ['22.22']
154156
client-version: ${{ (github.event.schedule == '0 0 * * *' || github.event.inputs.test-all-client-versions == 'true' || inputs.test-all-client-versions == true) && fromJSON('["published", "latest"]') || fromJSON('["latest"]') }}
155157
# Test configurations: Either from matrix_json input or generated from ci_matrix.json
156158
config: ${{ fromJSON(inputs.matrix_json || needs.generate-matrix.outputs.matrix).include }}

.github/workflows/release-branch-scheduled-ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,9 @@ jobs:
9999
branch: ${{ fromJSON(needs.discover-branches.outputs.branches) }}
100100
client: [library, docker, server]
101101
python-version: ["3.12"]
102-
node-version: [22]
102+
# Pinned to 22.22 due to node-fetch v2 "Premature close" regression in 22.23.0
103+
# (nodejs/node#63989). Unpin once a patched 22.x ships with nodejs/node#64004.
104+
node-version: ['22.22']
103105
client-version: ["latest"]
104106
steps:
105107
- name: Checkout ${{ matrix.branch }}

0 commit comments

Comments
 (0)