Skip to content

Commit 99deaac

Browse files
committed
Fix build warning: Unlimited fetch depth
SonarCloud is showing a warning that the shallow clone is hurting analysis. I'll fix this by doing a deep clone. There's nothing big here to hurt this, so I bet the impact on build performance will be negligible.
1 parent f49a977 commit 99deaac

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

.github/workflows/dotnetCi.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ jobs:
4343
steps:
4444
- name: Checkout
4545
uses: actions/checkout@v4
46+
with:
47+
fetch-depth: 0
4648

4749
# Install build dependencies
4850

0 commit comments

Comments
 (0)