Skip to content

Commit 46419cd

Browse files
committed
try instead with fetch depth 0
1 parent 8cd43b2 commit 46419cd

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/auto_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
steps:
2020
- uses: actions/checkout@v5
2121
with:
22-
fetch-tags: true
22+
fetch-depth: 0
2323
- name: Set up Python ${{ matrix.python-version }}
2424
uses: actions/setup-python@v6
2525
with:

.github/workflows/build_zipapp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
steps:
1414
- uses: actions/checkout@v5
1515
with:
16-
fetch-tags: true
16+
fetch-depth: 0
1717
- name: Set up Python
1818
uses: actions/setup-python@v6
1919
with:

.github/workflows/publish_to_pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313
- uses: actions/checkout@v5
1414
with:
15-
fetch-tags: true
15+
fetch-depth: 0
1616
- name: Set up Python
1717
uses: actions/setup-python@v6
1818
with:

.github/workflows/publish_to_testpypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
steps:
1414
- uses: actions/checkout@v5
1515
with:
16-
fetch-tags: true
16+
fetch-depth: 0
1717
- name: Set up Python
1818
uses: actions/setup-python@v6
1919
with:

.github/workflows/test_builds.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
steps:
1515
- uses: actions/checkout@v5
1616
with:
17-
fetch-tags: true
17+
fetch-depth: 0
1818
- name: Set up Python
1919
uses: actions/setup-python@v6
2020
with:
@@ -36,7 +36,7 @@ jobs:
3636
steps:
3737
- uses: actions/checkout@v5
3838
with:
39-
fetch-tags: true
39+
fetch-depth: 0
4040
- name: Set up Python
4141
uses: actions/setup-python@v6
4242
with:

0 commit comments

Comments
 (0)