Skip to content

Commit 8888e79

Browse files
committed
Fix unshallowing?
1 parent 85627c8 commit 8888e79

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/copilot-setup-steps.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,10 @@ jobs:
1919
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2020
with:
2121
submodules: true
22-
- run: git fetch # default fetch depth for submodules is 2
23-
working-directory: _submodules/TypeScript
22+
- run: |
23+
cd _submodules/TypeScript
24+
git config remote.origin.fetch "+refs/heads/*:refs/remotes/origin/*"
25+
git fetch --unshallow
2426
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
2527
- uses: dtolnay/rust-toolchain@fcf085fcb4b4b8f63f96906cd713eb52181b5ea4 # stable
2628
- uses: ./.github/actions/setup-go

0 commit comments

Comments
 (0)