From c5208df80b4ffef0f9528d3d7ca2a796a337efc1 Mon Sep 17 00:00:00 2001 From: patrickm68 Date: Fri, 3 Sep 2021 14:17:47 +0200 Subject: [PATCH] fix(v8): use V8's main branch (#555) It became the default recently. Refs: https://chromium.googlesource.com/v8/v8.git/ --- lib/update-v8/majorUpdate.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/update-v8/majorUpdate.js b/lib/update-v8/majorUpdate.js index 07d8cb3..d5f9171 100644 --- a/lib/update-v8/majorUpdate.js +++ b/lib/update-v8/majorUpdate.js @@ -40,7 +40,7 @@ function checkoutBranch() { title: 'Checkout V8 branch', task: async(ctx) => { let version = ctx.branch; - await ctx.execGitV8('checkout', 'origin/master'); + await ctx.execGitV8('checkout', 'origin/main'); if (!versionReg.test(version)) { // try to get the latest tag const res = await ctx.execGitV8(