We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18e2631 commit ab50cd2Copy full SHA for ab50cd2
.github/workflows/go-check.yml
@@ -29,7 +29,7 @@ jobs:
29
run: |
30
if [[ -n "$BASE_SHA" ]]; then
31
echo "base_sha=$BASE_SHA" | tee -a $GITHUB_OUTPUT
32
- git fetch origin "$BASE_SHA"
+ git fetch --recurse-submodules=no origin "$BASE_SHA"
33
git diff --name-only "$BASE_SHA" |
34
jq -Rnc '[inputs]' |
35
xargs -I {} -0 echo "changed_files={}" |
CHANGELOG.md
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
7
## Unreleased
8
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
+
13
## [1.0.31] - 2025-08-20
14
### Added
15
- support for Go 1.25 in the `go-check` workflow
0 commit comments