From 5ac01b2dc90cb825634cfdaf755afe93805459f6 Mon Sep 17 00:00:00 2001 From: logikonline Date: Sun, 25 Jan 2026 12:27:22 -0500 Subject: [PATCH] ci(deps): clear module cache before downloading deps Add module cache clearing step and enable verbose output for dependency downloads to help diagnose potential caching issues with private modules --- .gitea/workflows/test.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml index 26ce672..5f1fb39 100644 --- a/.gitea/workflows/test.yml +++ b/.gitea/workflows/test.yml @@ -17,8 +17,11 @@ jobs: go-version-file: 'go.mod' cache: false + - name: Clear module cache + run: go clean -modcache + - name: Download dependencies - run: go mod download + run: go mod download -x env: GOPRIVATE: git.marketally.com