From 21a939175b7d8aebe46f7409cecea6baa404ebd9 Mon Sep 17 00:00:00 2001 From: guoyonghao <1711322114@qq.com> Date: Thu, 30 Jul 2026 16:33:49 +0800 Subject: [PATCH] fix(ci): avoid rewriting Go module files --- .github/workflows/ci.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 11a0387..68588cf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -61,14 +61,12 @@ jobs: - name: Prepare Go environment uses: ./.github/actions/ci-go-prep - - name: Download and verify Go modules + - name: Download Go modules working-directory: server shell: bash run: | set -euo pipefail go mod download - go mod tidy - git diff --exit-code -- go.mod go.sum - name: Save Go module cache to S3 if: success()