From 16684c2f1831c7984f7658fd32cb005929141bf0 Mon Sep 17 00:00:00 2001 From: Martin Nonnenmacher Date: Wed, 17 Apr 2024 08:15:45 +0200 Subject: [PATCH] ci(github): Set infinite fetch depth for `docker-build` Set infinite fetch depth for the `docker-build` workflow to be sure to get all tags for calculating the correct version. This is a fixup for 94ef009. Signed-off-by: Martin Nonnenmacher --- .github/workflows/docker-build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/docker-build.yml b/.github/workflows/docker-build.yml index 119713816eed1..1eb6c54c42ba1 100644 --- a/.github/workflows/docker-build.yml +++ b/.github/workflows/docker-build.yml @@ -22,6 +22,8 @@ jobs: steps: - name: Checkout Repository uses: actions/checkout@v4 + with: + fetch-depth: 0 - name: Free Disk Space uses: ./.github/actions/free-disk-space - name: Setup Gradle