Skip to content

Commit 046514f

Browse files
committed
Fix create/edit dates generated by github workflows.
1 parent 42a082b commit 046514f

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/gh-pages-deploy.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@ jobs:
77
deploy:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v2
10+
- uses: actions/checkout@v4
11+
with:
12+
fetch-depth: 0
1113
- uses: actions/setup-python@v2
1214
with:
1315
python-version: 3.12

.github/workflows/pr-build.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ jobs:
1313
preview:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- name: Checkout PR
17-
uses: actions/checkout@v2
18-
16+
- uses: actions/checkout@v4
17+
with:
18+
fetch-depth: 0
1919
- name: Install Python
2020
uses: actions/setup-python@v2
2121
with:

0 commit comments

Comments
 (0)