From 9eb2cd11360afb5cbf795ee04701eae5ed8d6958 Mon Sep 17 00:00:00 2001 From: Adrienne Walker Date: Thu, 7 Dec 2023 09:40:13 -0800 Subject: [PATCH] ci: require node 18.18.2 for workflow jobs Without #5990, this breaks on 18.19.x and above. See: #5910. --- .github/actions/setup-js-env/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/setup-js-env/action.yml b/.github/actions/setup-js-env/action.yml index 94e3a90116..d854b3192f 100644 --- a/.github/actions/setup-js-env/action.yml +++ b/.github/actions/setup-js-env/action.yml @@ -5,7 +5,7 @@ runs: steps: - uses: actions/setup-node@v3 with: - node-version: '18' + node-version: '18.18.2' cache: 'npm' - name: Install Dependencies