From e5f7c812b25079cf79fbfd1121b5aec4e8bd98c2 Mon Sep 17 00:00:00 2001 From: Nogweii <14547+nogweii@users.noreply.github.com> Date: Mon, 29 May 2023 17:17:06 -0700 Subject: [PATCH] Don't pass any parameters to the checkout action (#34) * don't pass any parameters to the checkout action * re-add the fetch-depth parameter --- .github/workflows/build_container_images.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/build_container_images.yml b/.github/workflows/build_container_images.yml index 5916f99..7edc61b 100644 --- a/.github/workflows/build_container_images.yml +++ b/.github/workflows/build_container_images.yml @@ -28,8 +28,7 @@ jobs: - name: Checkout uses: actions/checkout@v3 with: - ref: main - path: main + # We want a full clone of the repo so that the rev-list count below is correct fetch-depth: 0 - name: Set up QEMU