Skip to content
Open
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 .azure-pipelines/templates/setup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ steps:
- task: NodeTool@0
displayName: "Using Node.js"
inputs:
versionSpec: '20.x'
versionSpec: '24.x'
condition: succeeded()

- script: npm install -g pnpm
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/Deploy-Documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ jobs:
restore-keys: |
${{ runner.os }}-turbo-docs-

- name: Set up Node.js version 20.x
uses: actions/setup-node@v1
- name: Set up Node.js version 24.x
uses: actions/setup-node@v4
with:
node-version: 20.x
node-version: 24.x

- uses: pnpm/action-setup@v3
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/Deploy-Standalone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
restore-keys: |
${{ runner.os }}-turbo-docs-

- name: Set up Node.js version 20.x
uses: actions/setup-node@v1
- name: Set up Node.js version 24.x
uses: actions/setup-node@v4
with:
node-version: 20.x
node-version: 24.x

- uses: pnpm/action-setup@v3
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/compile-loc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ jobs:
token: ${{ secrets.AUTOMATION_PAT }}

- name: Set up Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: 20.x
node-version: 24.x

- uses: pnpm/action-setup@v3
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.x
node-version: 24.x
- uses: pnpm/action-setup@v3
with:
version: 9.1.3
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.x
node-version: 24.x

- name: Download blob reports from GitHub Actions Artifacts
uses: actions/download-artifact@v4
Expand All @@ -74,7 +74,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.x
node-version: 24.x
- uses: pnpm/action-setup@v3
with:
version: 9.1.3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
node-version: 24.x

- name: Install pnpm
uses: pnpm/action-setup@v3
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/private-vsix-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
node-version: [20.x, 22.x, 24.x]

Comment on lines 13 to 16
steps:
# checkout the repo
Expand All @@ -30,7 +30,7 @@ jobs:
${{ runner.os }}-turbo-

- name: Set up Node.js version ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

Expand Down Expand Up @@ -58,10 +58,10 @@ jobs:
with:
fetch-depth: 0

- name: Set up Node.js version 20
uses: actions/setup-node@v1
- name: Set up Node.js version 24
uses: actions/setup-node@v4
with:
node-version: 20
node-version: 24
Comment on lines +61 to +64

- uses: pnpm/action-setup@v3
with:
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/production-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ jobs:
fetch-depth: 0

- name: Set up Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: 20
node-version: 24

- uses: pnpm/action-setup@v3
with:
Expand Down Expand Up @@ -83,10 +83,10 @@ jobs:
with:
fetch-depth: 0

- name: Set up Node.js version 20
uses: actions/setup-node@v1
- name: Set up Node.js version 24
uses: actions/setup-node@v4
with:
node-version: 20
node-version: 24

- uses: pnpm/action-setup@v3
with:
Expand Down Expand Up @@ -146,9 +146,9 @@ jobs:
subscription-id: ${{ secrets.AZURE_TESTING_SUBSCRIPTION_ID }}

- name: Set up Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: 20
node-version: 24

- uses: pnpm/action-setup@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/real-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 24

- name: Download blob reports from GitHub Actions Artifacts
uses: actions/download-artifact@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
node-version: [20.x, 22.x, 24.x]

Comment on lines 12 to 15
steps:
# checkout the repo
Expand All @@ -29,7 +29,7 @@ jobs:
${{ runner.os }}-turbo-

- name: Set up Node.js version ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: 'Set up Node.js'
uses: actions/setup-node@v4
with:
node-version: 20
node-version: 24

- name: 'Validate Inputs'
id: validate
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/upload-templates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
node-version: 24.x

- uses: pnpm/action-setup@v3
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/version-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
node-version: 24

- uses: pnpm/action-setup@v3
with:
Expand Down Expand Up @@ -175,7 +175,7 @@ jobs:
- name: 'Set up Node.js'
uses: actions/setup-node@v4
with:
node-version: 20
node-version: 24

- uses: pnpm/action-setup@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/vscode-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
node-version: 24.x

- name: Setup .NET SDK
uses: actions/setup-dotnet@v4
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"typescript": "5.6.3"
},
"engines": {
"node": ">=18.0"
"node": ">=20"
},
"private": true,
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions apps/vs-code-designer/src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ export const azureWebJobsStorageKey = 'AzureWebJobsStorage';
export const functionsInprocNet8Enabled = 'FUNCTIONS_INPROC_NET8_ENABLED';
export const functionsInprocNet8EnabledTrue = '1';
export const azureWebJobsSecretStorageTypeKey = 'AzureWebJobsSecretStorageType';
export const workflowappRuntime = 'node|20';
export const workflowappRuntime = 'node|22';
export const viewOutput = localize('viewOutput', 'View Output');
export const webhookRedirectHostUri = 'Workflows.WebhookRedirectHostUri';
export const workflowAppAADClientId = 'WORKFLOWAPP_AAD_CLIENTID';
Expand Down Expand Up @@ -319,7 +319,7 @@ export const defaultDesignerVersion = 1;
export const DependencyVersion = {
dotnet8: '8.0.318',
funcCoreTools: '4.0.7030',
nodeJs: '20.18.3',
nodeJs: '24.15.0',
} as const;
export type DependencyVersion = (typeof DependencyVersion)[keyof typeof DependencyVersion];

Expand Down
2 changes: 1 addition & 1 deletion libs/chatbot/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"react": "18.2.0"
},
"engines": {
"node": ">=12"
"node": ">=20"
},
"exports": {
".": {
Expand Down
2 changes: 1 addition & 1 deletion libs/data-mapper-v2/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"@types/pathfinding": "^0.0.9"
},
"engines": {
"node": ">=12"
"node": ">=20"
},
"exports": {
".": {
Expand Down
2 changes: 1 addition & 1 deletion libs/data-mapper/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"@types/pathfinding": "^0.0.9"
},
"engines": {
"node": ">=12"
"node": ">=20"
},
"exports": {
".": {
Expand Down
2 changes: 1 addition & 1 deletion libs/designer-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"timezone-mock": "^1.3.6"
},
"engines": {
"node": ">=12"
"node": ">=20"
},
"exports": {
".": {
Expand Down
2 changes: 1 addition & 1 deletion libs/designer-v2/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"@types/to-title-case": "^1.0.2"
},
"engines": {
"node": ">=12"
"node": ">=20"
},
"exports": {
".": {
Expand Down
2 changes: 1 addition & 1 deletion libs/designer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
"@types/file-saver": "^2.0.5"
},
"engines": {
"node": ">=12"
"node": ">=20"
},
"exports": {
".": {
Expand Down
2 changes: 1 addition & 1 deletion libs/logic-apps-shared/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"tslib": "2.4.0"
},
"engines": {
"node": ">=12"
"node": ">=20"
},
"exports": {
".": {
Expand Down
2 changes: 1 addition & 1 deletion libs/vscode-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"react-dom": "^16.4.0 || ^17.0.0 || ^18.0.0"
},
"engines": {
"node": ">=12"
"node": ">=20"
},
"exports": {
".": {
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"@testing-library/react": "^15.0.2",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^20.12.7",
"@types/node": "^24.0.0",
"@types/react": "18.3.0",
"@types/react-dom": "18.3.0",
"@types/react-test-renderer": "^18.0.7",
Expand Down Expand Up @@ -64,7 +64,7 @@
"vitest": "^3.2.4"
},
"engines": {
"node": ">=18",
"node": ">=20",
"pnpm": ">=9"
},
"license": "MIT",
Expand Down
Loading
Loading