Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit a8974ac

Browse files
committedFeb 20, 2025
Do not perform deep checkout of submodules
Fixes shader-slang#5465
1 parent 9580e31 commit a8974ac

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎.github/workflows/ci.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,8 @@ jobs:
8585
- uses: actions/checkout@v4
8686
with:
8787
submodules: "recursive"
88-
fetch-depth: "0"
88+
fetch-depth: "1" # Fetch only the latest commit (shallow clone)
89+
shallow-submodules: "true" # Fetch submodules at only the latest commit
8990
- id: filter
9091
run: |
9192
# This step prevents subsequent steps from running if only documentation was changed

0 commit comments

Comments
 (0)
Please sign in to comment.