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:
parent
b0eaa0ba70
commit
cc4bc2c01c
2 changed files with 2 additions and 2 deletions
2
.github/workflows/ci.generate.ts
vendored
2
.github/workflows/ci.generate.ts
vendored
|
@ -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",
|
||||
|
|
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
@ -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: |-
|
||||
|
|
Loading…
Reference in a new issue