From dfa24aa0340a63896fe575454240177691226a7d Mon Sep 17 00:00:00 2001 From: Rahul Rampure Date: Fri, 26 Dec 2025 22:58:45 +0530 Subject: [PATCH] fix workflow --- .github/workflows/tests.yml | 4 ++-- go.mod | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 68da8e7..e2cdef8 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -8,12 +8,12 @@ jobs: test: strategy: matrix: - go-version: [1.21.x, 1.22.x, 1.23.x] + go-version: [1.23.x, 1.24.x, 1.25.x] platform: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.platform }} steps: - name: Install Go - uses: actions/setup-go@v1 + uses: actions/setup-go@v5 with: go-version: ${{ matrix.go-version }} - name: Checkout code diff --git a/go.mod b/go.mod index 236e09f..ddfc52b 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/blevesearch/scorch_segment_api/v2 -go 1.21 +go 1.24.0 require ( github.com/RoaringBitmap/roaring/v2 v2.4.5