diff --git a/.circleci/config.yml b/.circleci/config.yml index b8d12990b11c..487dcf4f53b2 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -7,8 +7,8 @@ # To validate changes, use an online parser, eg. # http://yaml-online-parser.appspot.com/ -var_1: &docker_image cimg/node:16.14.0 -var_2: &docker-browser-image cimg/node:16.14.0-browsers +var_1: &docker_image cimg/node:18.13.0 +var_2: &docker-browser-image cimg/node:18.13.0-browsers # **Note**: When updating the beginning of the cache key, also update the cache key to match # the new cache key prefix. This allows us to take advantage of CircleCI's fallback caching. diff --git a/.nvmrc b/.nvmrc index 832d38506443..d939939b2596 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -16.14.0 +18.13.0 diff --git a/WORKSPACE b/WORKSPACE index 0df41fa02811..fd32cdded6da 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -59,7 +59,7 @@ load("@rules_nodejs//nodejs:repositories.bzl", "nodejs_register_toolchains") nodejs_register_toolchains( name = "nodejs", - node_version = "16.14.0", + node_version = "18.13.0", ) load("@build_bazel_rules_nodejs//:index.bzl", "yarn_install") diff --git a/package.json b/package.json index 697f80992662..768e0b9afeb4 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ }, "license": "MIT", "engines": { - "node": ">=16.0.0 <20.0.0", + "node": ">=18.0.0 <20.0.0", "yarn": "^1.22.17", "npm": "Please use Yarn instead of NPM to install dependencies. See: https://yarnpkg.com/lang/en/docs/install/" },