From 29dd153df1d43a17f7c69578386fca01673e4378 Mon Sep 17 00:00:00 2001 From: Tomi Turtiainen <10324676+tomi@users.noreply.github.com> Date: Fri, 23 Aug 2024 16:06:43 +0300 Subject: [PATCH] ci: Fix fetch depth in benchmark (no-changelog) (#10532) --- packages/@n8n/benchmark/scripts/runInCloud.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/@n8n/benchmark/scripts/runInCloud.mjs b/packages/@n8n/benchmark/scripts/runInCloud.mjs index 3e0225eeff..ee5c6b48e8 100755 --- a/packages/@n8n/benchmark/scripts/runInCloud.mjs +++ b/packages/@n8n/benchmark/scripts/runInCloud.mjs @@ -107,7 +107,7 @@ async function ensureVmIsReachable(sshClient) { async function transferScriptsToVm(sshClient) { await sshClient.ssh('rm -rf ~/n8n'); - await sshClient.ssh('git clone --depth=0 https://github.com/n8n-io/n8n.git'); + await sshClient.ssh('git clone --depth=1 https://github.com/n8n-io/n8n.git'); return '~/n8n/packages/@n8n/benchmark/scripts/runOnVm'; }