Skip to content
This repository was archived by the owner on Sep 20, 2025. It is now read-only.

Commit 439a09f

Browse files
committed
chore(ci): add necessary fetch-depth: 0
1 parent 7217926 commit 439a09f

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ jobs:
2222
steps:
2323
- name: Checkout repo
2424
uses: actions/checkout@v3
25+
with:
26+
fetch-depth: 0
2527

2628
- name: Use Node.js ${{ matrix.node-version }}
2729
uses: actions/setup-node@v3

.github/workflows/version.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@ jobs:
1818
node-version: [18.9.x]
1919
steps:
2020
- name: Checkout repo
21-
uses: actions/checkout@v3
21+
uses: actions/checkout@main
22+
with:
23+
fetch-depth: 0
2224

2325
- name: Use Node.js ${{ matrix.node-version }}
2426
uses: actions/setup-node@v3

0 commit comments

Comments
 (0)