Skip to content

Commit ab50cd2

Browse files
committed
chore: do not recurse submodules in go-check
1 parent 18e2631 commit ab50cd2

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/go-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
run: |
3030
if [[ -n "$BASE_SHA" ]]; then
3131
echo "base_sha=$BASE_SHA" | tee -a $GITHUB_OUTPUT
32-
git fetch origin "$BASE_SHA"
32+
git fetch --recurse-submodules=no origin "$BASE_SHA"
3333
git diff --name-only "$BASE_SHA" |
3434
jq -Rnc '[inputs]' |
3535
xargs -I {} -0 echo "changed_files={}" |

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## Unreleased
88

9+
## [1.0.32] - 2025-08-20
10+
### Changed
11+
- do not recurse submodules when fetching the base SHA in the `go-check` workflow
12+
913
## [1.0.31] - 2025-08-20
1014
### Added
1115
- support for Go 1.25 in the `go-check` workflow

0 commit comments

Comments
 (0)