From 6d999ec344b569fdafece7fa471c8d07e01273a0 Mon Sep 17 00:00:00 2001 From: appleboy Date: Tue, 18 Mar 2025 22:53:59 +0800 Subject: [PATCH] chore: update Go version in CI workflows and dependencies - Drop Go version `1.22` from CI workflows - Update go.mod to use Go version `1.23.0` instead of `1.22` Signed-off-by: appleboy --- .github/workflows/gin.yml | 2 +- go.mod | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/gin.yml b/.github/workflows/gin.yml index 99bfcdad..4552b24e 100644 --- a/.github/workflows/gin.yml +++ b/.github/workflows/gin.yml @@ -33,7 +33,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest] - go: ["1.22", "1.23", "1.24"] + go: ["1.23", "1.24"] test-tags: ["", "-tags nomsgpack", '-tags "sonic avx"', "-tags go_json", "-race"] include: diff --git a/go.mod b/go.mod index a8032b70..04867216 100644 --- a/go.mod +++ b/go.mod @@ -1,7 +1,6 @@ module github.com/gin-gonic/gin -go 1.22 -toolchain go1.23.7 +go 1.23.0 require ( github.com/bytedance/sonic v1.11.6