From ff028e9afb0499623080f5e2f65d880e43029f1f Mon Sep 17 00:00:00 2001 From: Alexander Emelin Date: Thu, 3 Oct 2024 12:00:47 +0300 Subject: [PATCH] Up go versions (Go 1.23) (#894) --- .github/workflows/release.yml | 2 +- .github/workflows/test.yml | 6 +++--- go.mod | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 869b3b2af..c60e52618 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - go-version: [1.22.6] + go-version: [1.23.2] steps: - name: Install Go uses: actions/setup-go@v5 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9760e6e66..7a86e1db7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,11 +10,11 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: '1.22.x' + go-version: '1.23.x' - name: golangci-lint uses: golangci/golangci-lint-action@v6 with: - version: v1.57.2 + version: v1.61.0 args: --timeout 3m0s --verbose test: name: Test with Go ${{ matrix.go-version }} @@ -23,7 +23,7 @@ jobs: if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository strategy: matrix: - go-version: [1.22.6] + go-version: [1.23.2] tarantool-version: [2.7.2] steps: - name: Install Go diff --git a/go.mod b/go.mod index a2722bf23..1de9a137b 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/centrifugal/centrifugo/v5 -go 1.21 +go 1.23.0 require ( github.com/FZambia/eagle v0.1.0