1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-22 07:14:47 -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 GitHub
parent b0eaa0ba70
commit cc4bc2c01c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -98,7 +98,7 @@ const installPythonSteps = [{
const installNodeStep = { const installNodeStep = {
name: "Install Node", name: "Install Node",
uses: "actions/setup-node@v3", uses: "actions/setup-node@v3",
with: { "node-version": 17 }, with: { "node-version": 18 },
}; };
const installDenoStep = { const installDenoStep = {
name: "Install Deno", name: "Install Deno",

View file

@ -119,7 +119,7 @@ jobs:
- name: Install Node - name: Install Node
uses: actions/setup-node@v3 uses: actions/setup-node@v3
with: with:
node-version: 17 node-version: 18
if: steps.exit_early.outputs.EXIT_EARLY != 'true' if: steps.exit_early.outputs.EXIT_EARLY != 'true'
- name: Setup gcloud (unix) - name: Setup gcloud (unix)
if: |- if: |-