1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-23 15:16:54 -05:00

fix(ci): use Node 18 (#17355)

This commit is contained in:
Asher Gomez 2023-01-12 10:30:38 +11:00 committed by David Sherret
parent 35eaf1b7b7
commit 95e098c82b
2 changed files with 2 additions and 2 deletions

View file

@ -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",

View file

@ -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: |-