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:
parent
35eaf1b7b7
commit
95e098c82b
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