From ef460ec891f520db7a36bf72c37f384601f600bc Mon Sep 17 00:00:00 2001 From: lafay <2021211506@stu.hit.edu.cn> Date: Sat, 10 Jan 2026 04:42:22 +0800 Subject: [PATCH] chore: Disable caching in Go setup for build workflow - Updated the build workflow to disable caching for the Go setup action. - This change aims to ensure a clean build environment for better consistency. --- .gitea/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 23dbf19..cbf47e9 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -21,7 +21,7 @@ jobs: uses: actions/setup-go@v5 with: go-version: '1.25' - cache: true + cache: false - name: Set up Go Proxy run: |