From 2bd8a569ac74370a6cb40e000b36319d62cb5aba Mon Sep 17 00:00:00 2001 From: Michael Li Date: Fri, 27 Feb 2026 13:24:12 -0500 Subject: [PATCH] chore: Split up commands (#6450) (#6451) (cherry picked from commit 274688e9e2f6050f6088f223f5d3f48a9ee81f23) --- .github/workflows/test-race.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-race.yml b/.github/workflows/test-race.yml index ade28233de..087120c69c 100644 --- a/.github/workflows/test-race.yml +++ b/.github/workflows/test-race.yml @@ -160,10 +160,12 @@ jobs: key: ${{ needs.setup.outputs.go-tools-cache-key }} restore-keys: | go-tools-${{ needs.setup.outputs.go-version }} - - name: Install tools - if: steps.go-tools-cache.outputs.cache-hit != 'true' + - name: Go mod download run: | go mod download + - name: Install Tools + if: steps.go-tools-cache.outputs.cache-hit != 'true' + run: | make tools - name: Set up plugin cache id: plugin-cache