diff options
author | Asher Gomez <ashersaupingomez@gmail.com> | 2023-01-12 10:30:38 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-11 18:30:38 -0500 |
commit | cc4bc2c01c936324433b58f031d02710244e20b7 (patch) | |
tree | 8198ad3200e277b525ec44247218ed0c0195ceb2 | |
parent | b0eaa0ba70485b3cccfc4eb8dfb28087ce62e56a (diff) |
fix(ci): use Node 18 (#17355)
-rw-r--r-- | .github/workflows/ci.generate.ts | 2 | ||||
-rw-r--r-- | .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 615a48fe4..dd91fbd88 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 99763cc73..f051a458f 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: |- |