From ceba5cafa9dd6d9be004419f86ed6e8fabec0233 Mon Sep 17 00:00:00 2001 From: Aleksander Zaruczewski Date: Mon, 5 Feb 2024 19:22:27 +0200 Subject: [PATCH] ci(checkout): add missing fetch-depth --- .github/workflows/acceptance-tests.yml | 2 ++ .github/workflows/examples-tests.yml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.github/workflows/acceptance-tests.yml b/.github/workflows/acceptance-tests.yml index 03eb0ef89..cd8e36cc5 100644 --- a/.github/workflows/acceptance-tests.yml +++ b/.github/workflows/acceptance-tests.yml @@ -19,6 +19,8 @@ jobs: project_name_suffix: ${{ steps.selproj.outputs.project_name_suffix }} steps: - uses: actions/checkout@v4 + with: + fetch-depth: 0 - id: selproj run: echo "project_name_suffix=$(make -s ci-selproj | tr -d '\n')" >> $GITHUB_OUTPUT diff --git a/.github/workflows/examples-tests.yml b/.github/workflows/examples-tests.yml index 40f44c38e..e0fdb822a 100644 --- a/.github/workflows/examples-tests.yml +++ b/.github/workflows/examples-tests.yml @@ -19,6 +19,8 @@ jobs: project_name_suffix: ${{ steps.selproj.outputs.project_name_suffix }} steps: - uses: actions/checkout@v4 + with: + fetch-depth: 0 - id: selproj run: echo "project_name_suffix=$(make -s ci-selproj | tr -d '\n')" >> $GITHUB_OUTPUT