Skip to content

Commit f184834

Browse files
tombreittimvink
authored andcommitted
Hopefully resolves GH actions failing for #80: Set git fetch-depth to 0 to fetch all history for all branches and tags; Bumped actions/checkout to v4
1 parent 292649a commit f184834

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

.github/workflows/pythonpublish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ jobs:
1212
# IMPORTANT: this permission is mandatory for trusted publishing
1313
id-token: write
1414
steps:
15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v4
1616
with:
17-
fetch_depth: '0'
17+
fetch-depth: 0
1818
- name: Set up Python
1919
uses: actions/setup-python@v4
2020
with:

.github/workflows/unittests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ jobs:
99
os: [ubuntu-latest, macos-latest, windows-latest]
1010
python-version: [3.7, 3.8, 3.9, "3.10", "3.11"]
1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v4
13+
with:
14+
fetch-depth: 0
1315
- name: Setup Python
1416
uses: actions/setup-python@v4
1517
with:

.github/workflows/unittests_codecov.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ jobs:
1919
os: [ubuntu-latest, macos-latest, windows-latest]
2020
python-version: [3.7, 3.8, 3.9, "3.10", "3.11"]
2121
steps:
22-
- uses: actions/checkout@master
22+
- uses: actions/checkout@v4
23+
with:
24+
fetch-depth: 0
2325
- name: Setup Python ${{ matrix.python-version }}
2426
uses: actions/setup-python@v4
2527
with:

0 commit comments

Comments
 (0)