From 0793572dc32182053a6b7534b803aac42a7fa063 Mon Sep 17 00:00:00 2001 From: "j.spijker@ultimaker.com" Date: Fri, 15 Jul 2022 13:52:21 +0200 Subject: [PATCH] Limit the number of commits to checkout to 3000 Should speed up this workflow Seems like a reasonable number (for Cura) at the time of writing that would include up until 4.13.1 Contributes to CURA-9459 --- .github/workflows/conan-recipe-version.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/conan-recipe-version.yml b/.github/workflows/conan-recipe-version.yml index ea1915c5cb..243ebf490f 100644 --- a/.github/workflows/conan-recipe-version.yml +++ b/.github/workflows/conan-recipe-version.yml @@ -45,7 +45,7 @@ jobs: uses: actions/checkout@v3 with: ref: ${{ github.head_ref }} - fetch-depth: 0 + fetch-depth: 3000 - name: Setup Python and pip uses: actions/setup-python@v4