From b3d1dd14930afb4dc7f6d47efaced7710ed5b600 Mon Sep 17 00:00:00 2001 From: hc-github-team-consul-core Date: Mon, 27 Nov 2023 15:41:53 -0600 Subject: [PATCH] Backport of ci: Run `go mod tidy` check on submodules into release/1.16.x (#19747) backport of commit 5316676bb671a973d4a04a9d0fd1db7b922cea86 Co-authored-by: Michael Zalimeni --- .github/workflows/reusable-check-go-mod.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/reusable-check-go-mod.yml b/.github/workflows/reusable-check-go-mod.yml index 2078b0c32..948d09fc5 100644 --- a/.github/workflows/reusable-check-go-mod.yml +++ b/.github/workflows/reusable-check-go-mod.yml @@ -26,7 +26,8 @@ jobs: - uses: actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568 # pin@v3.5.0 with: go-version-file: 'go.mod' - - run: go mod tidy + # Run on all go.mod (include submodules). + - run: make go-mod-tidy - run: | if [[ -n $(git status -s) ]]; then echo "Git directory has changes"