From cc4bc2c01c936324433b58f031d02710244e20b7 Mon Sep 17 00:00:00 2001 From: Asher Gomez Date: Thu, 12 Jan 2023 10:30:38 +1100 Subject: [PATCH] fix(ci): use Node 18 (#17355) --- .github/workflows/ci.generate.ts | 2 +- .github/workflows/ci.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.generate.ts b/.github/workflows/ci.generate.ts index 615a48fe452b45..dd91fbd888ec5a 100644 --- a/.github/workflows/ci.generate.ts +++ b/.github/workflows/ci.generate.ts @@ -98,7 +98,7 @@ const installPythonSteps = [{ const installNodeStep = { name: "Install Node", uses: "actions/setup-node@v3", - with: { "node-version": 17 }, + with: { "node-version": 18 }, }; const installDenoStep = { name: "Install Deno", diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 99763cc73fa19d..f051a458fa8da9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -119,7 +119,7 @@ jobs: - name: Install Node uses: actions/setup-node@v3 with: - node-version: 17 + node-version: 18 if: steps.exit_early.outputs.EXIT_EARLY != 'true' - name: Setup gcloud (unix) if: |-