From 8c581a3c5d389fc071cd720640cb545af26b317a Mon Sep 17 00:00:00 2001 From: Nexus Date: Sun, 1 Mar 2026 15:28:17 +0800 Subject: [PATCH 1/2] chore: upgrade go version to 1.23 --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index 3888e27..fe95598 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/devfeel/dotweb -go 1.12 +go 1.23 require ( github.com/garyburd/redigo v1.6.0 From c6c15fa5f87b2319ded53a275a38fbc1edc0c34d Mon Sep 17 00:00:00 2001 From: devfeel Date: Sun, 1 Mar 2026 15:29:34 +0800 Subject: [PATCH 2/2] Update go.yml --- .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 14bd4f2..de0b505 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -7,10 +7,10 @@ jobs: runs-on: ubuntu-latest steps: - - name: Set up Go 1.13 + - name: Set up Go 1.23 uses: actions/setup-go@v1 with: - go-version: 1.13 + go-version: 1.23 id: go - name: Check out code into the Go module directory