Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions .github/workflows/docs-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,16 @@ jobs:
strategy:
fail-fast: false # Continue running all matrix jobs even if one fails
matrix:
node-version: [20, 22] # Test against multiple Node.js versions
node-version: [22, 24] # Test against supported Node.js versions

steps:
# Step 1: Checkout the repository code
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should move to v5 at a minimum, which now uses node 24. See https://github.com/actions/checkout. v6 is available.


# Step 2: Set up Node.js for the current matrix version
- name: Set up Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should move to v5 at a minimum, which uses node 24 as the default. See https://github.com/actions/setup-node for details. v6 is the latest.

with:
node-version: ${{ matrix.node-version }}

Expand Down Expand Up @@ -81,3 +81,5 @@ jobs:
echo "platform.openapi.json not found — skipping."
fi
working-directory: docs


2 changes: 1 addition & 1 deletion .github/workflows/ts-client-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20.19.x'
node-version: '24.x'
registry-url: 'https://registry.npmjs.org/'

- name: Set version from release tag
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ts-client-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20.19.x'
node-version: '24.x'

- name: Install dependencies
run: npm install
Expand Down
Loading