From e9c7b8fee7db73617489b32cd9ea5d48362bd510 Mon Sep 17 00:00:00 2001 From: Vojtech Micka Date: Sat, 3 Aug 2024 00:20:38 +0200 Subject: [PATCH] Ensure the whole history is fetched --- .github/workflows/docs.yaml | 3 +-- .github/workflows/publish-pypi.yaml | 3 +-- .github/workflows/test.yaml | 3 +-- 3 files changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index 3e52259..b07cd91 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -12,8 +12,7 @@ jobs: - name: Checkout source files uses: actions/checkout@v4 with: - fetch-depth: 1 - fetch-tags: true + fetch-depth: 0 persist-credentials: false - name: Set up Python 🐍 diff --git a/.github/workflows/publish-pypi.yaml b/.github/workflows/publish-pypi.yaml index 6dae7a4..34d0ff5 100644 --- a/.github/workflows/publish-pypi.yaml +++ b/.github/workflows/publish-pypi.yaml @@ -14,8 +14,7 @@ jobs: - name: Checkout source files uses: actions/checkout@v4 with: - fetch-depth: 1 - fetch-tags: true + fetch-depth: 0 persist-credentials: false - name: Set up Python 🐍 diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index f28a4a9..b87973a 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -21,8 +21,7 @@ jobs: - name: Checkout source files uses: actions/checkout@v4 with: - fetch-depth: 1 - fetch-tags: true + fetch-depth: 0 persist-credentials: false - name: Set up Python 🐍