From cf7e1d4f4447f4f29fb99153ba5310ef01eff916 Mon Sep 17 00:00:00 2001 From: Patrick Russell Date: Thu, 26 Mar 2026 13:01:48 -0700 Subject: [PATCH] Fix Node.js runtime version in TypeScript Actions example Update runtime from nodejs:18 (EOL) to nodejs:22 in the app.config.yaml example. Made-with: Cursor --- .../app_builder_guides/configuration/typescript-actions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/guides/app_builder_guides/configuration/typescript-actions.md b/src/pages/guides/app_builder_guides/configuration/typescript-actions.md index 21b3b3881..8f863bff2 100644 --- a/src/pages/guides/app_builder_guides/configuration/typescript-actions.md +++ b/src/pages/guides/app_builder_guides/configuration/typescript-actions.md @@ -73,7 +73,7 @@ runtimeManifest: my-action: function: actions/my-action/index.ts web: 'yes' - runtime: nodejs:18 + runtime: nodejs:22 ``` That's it. App Builder will use Webpack with `ts-loader` to compile your TypeScript action during build and deployment.