From ab7ff3a25939ecdbf81ea731ff98e215b86becad Mon Sep 17 00:00:00 2001 From: 2bxtech Date: Wed, 19 Nov 2025 04:57:36 -0600 Subject: [PATCH] chore(deps): update Go to 1.23.0 for golangci-lint compatibility Bump Go version from 1.22.4 to 1.23.0 to resolve CI failure. golangci-lint v1.64.8 requires Go >= 1.23.0. Updates: - .github/workflows/ci.yml: Set go-version to 1.23.0 - go.mod: Update go directive to 1.23.0 Fixes golangci-lint installation error in CI pipeline. --- .github/workflows/ci.yml | 2 +- go.mod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index be457d1..d740cfe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,7 +29,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v5 with: - go-version: '1.22.4' + go-version: '1.23.0' cache: true - name: Install dependencies diff --git a/go.mod b/go.mod index 7a6826a..ad3107c 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/2bxtech/taskforge -go 1.22.4 +go 1.23.0 require ( github.com/google/uuid v1.6.0