From 43dcd61c514c07ab6a5305ca5a23b3424c2ee28b Mon Sep 17 00:00:00 2001 From: zhangwenjian Date: Fri, 15 May 2026 17:52:12 +0800 Subject: [PATCH] =?UTF-8?q?config=F0=9F=94=A7:=20update=20go-version=20to?= =?UTF-8?q?=201.24=20in=20build=20workflow?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit go.mod requires go 1.24, go mod tidy fails when runner uses 1.18. --- .github/workflows/go.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index abafef84..dcd0e1fa 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -16,10 +16,10 @@ jobs: runs-on: ubuntu-latest steps: - - name: Set up Go 1.18 + - name: Set up Go 1.24 uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5 with: - go-version: 1.18 + go-version: 1.24 id: go - name: Check out code into the Go module directory