Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jobs:

- name: Upload build artifacts
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
if: matrix.os == 'ubuntu-latest' && matrix.node-version == '22.x'
if: matrix.os == 'ubuntu-latest' && matrix.node-version == '24.x'
with:
name: build-artifacts
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-models.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
node-version: '20.x'
node-version: '24.x'

- name: Authenticate GitHub CLI
env:
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,20 +79,22 @@ jobs:
exit "$status"

- name: Publish test results to step summary
if: always() && matrix.node-version == '22.x'
if: always() && matrix.node-version == '24.x'
shell: bash
run: node scripts/parse-test-output.js "$RUNNER_TEMP/test-output.txt" >> "$GITHUB_STEP_SUMMARY"

- name: Run tests
uses: coactions/setup-xvfb@b6b4fcfb9f5a895edadc3bc76318fae0ac17c8b3 # v1.0.1
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
with:
run: cd vscode-extension && npm test
options: -screen 0 1024x768x24
continue-on-error: true # VS Code extension tests can be flaky in CI

- name: Upload build artifacts
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
if: matrix.node-version == '22.x'
if: matrix.node-version == '24.x'
with:
name: extension-build
path: |
Expand All @@ -117,7 +119,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
node-version: '20.x'
node-version: '24.x'
cache: 'npm'
cache-dependency-path: vscode-extension/package-lock.json

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cli-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
if: needs.check-changes.outputs.cli-relevant == 'true'
runs-on: ubuntu-latest
env:
node-version: 22
node-version: 24
steps:
- name: Harden Runner
uses: step-security/harden-runner@fe104658747b27e96e4f7e80cd0a94068e53901d # v2.16.1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/copilot-setup-steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
node-version: "20"
node-version: "24"
cache: "npm"
cache-dependency-path: "**/package-lock.json"

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
node-version: '20.x'
node-version: '24.x'
cache: 'npm'
cache-dependency-path: vscode-extension/package-lock.json

Expand Down Expand Up @@ -389,7 +389,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
node-version: '20.x'
node-version: '24.x'
cache: 'npm'
cache-dependency-path: vscode-extension/package-lock.json

Expand Down Expand Up @@ -499,7 +499,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
node-version: '22.x'
node-version: '24.x'

# ── Install dependencies ────────────────────────────────────────────────

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sync-release-notes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
node-version: '20.x'
node-version: '24.x'

- name: Sync GitHub release notes to CHANGELOG.md
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sync-toolnames.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
node-version: '20.x'
node-version: '24.x'

- name: Authenticate GitHub CLI
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/visualstudio-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
node-version: '22.x'
node-version: '24.x'

# ── Install dependencies ────────────────────────────────────────────────

Expand Down
Loading