Skip to content

Commit f1d7757

Browse files
committed
build: bump node version (#27720)
Updates to a slightly newer version of Node. We need this, because the automated Lighthouse audits require at least version 18.16.0.
1 parent 333e87e commit f1d7757

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
# To validate changes, use an online parser, eg.
88
# http://yaml-online-parser.appspot.com/
99

10-
var_1: &docker_image cimg/node:16.14.0
11-
var_2: &docker-browser-image cimg/node:16.14.0-browsers
10+
var_1: &docker_image cimg/node:18.17.0
11+
var_2: &docker-browser-image cimg/node:18.17.0-browsers
1212

1313
# **Note**: When updating the beginning of the cache key, also update the cache key to match
1414
# the new cache key prefix. This allows us to take advantage of CircleCI's fallback caching.

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
16.14.0
1+
18.17.0

WORKSPACE

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
99
# Add NodeJS rules
1010
http_archive(
1111
name = "build_bazel_rules_nodejs",
12-
sha256 = "5dd1e5dea1322174c57d3ca7b899da381d516220793d0adef3ba03b9d23baa8e",
13-
urls = ["https://github.com/bazelbuild/rules_nodejs/releases/download/5.8.3/rules_nodejs-5.8.3.tar.gz"],
12+
sha256 = "709cc0dcb51cf9028dd57c268066e5bc8f03a119ded410a13b5c3925d6e43c48",
13+
urls = ["https://github.com/bazelbuild/rules_nodejs/releases/download/5.8.4/rules_nodejs-5.8.4.tar.gz"],
1414
)
1515

1616
# Add sass rules
@@ -60,7 +60,7 @@ load("@rules_nodejs//nodejs:repositories.bzl", "nodejs_register_toolchains")
6060

6161
nodejs_register_toolchains(
6262
name = "nodejs",
63-
node_version = "16.14.0",
63+
node_version = "18.17.0",
6464
)
6565

6666
load("@build_bazel_rules_nodejs//:index.bzl", "yarn_install")

0 commit comments

Comments
 (0)