From 723075981cc3bfeff93b83324db37e85915b8765 Mon Sep 17 00:00:00 2001 From: Alex Gaetano Padula Date: Sun, 17 Aug 2025 12:05:44 -0400 Subject: [PATCH 1/2] update wildcat package to use latest go version, go 1.25 --- c/go.mod | 2 +- go.mod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/c/go.mod b/c/go.mod index 957851c..d9ecb66 100644 --- a/c/go.mod +++ b/c/go.mod @@ -1,6 +1,6 @@ module wildcat_c -go 1.24.6 +go 1.25 require github.com/wildcatdb/wildcat/v2 v2.4.1 diff --git a/go.mod b/go.mod index 493f69f..11f72b7 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/wildcatdb/wildcat/v2 -go 1.24.6 +go 1.25 require go.mongodb.org/mongo-driver v1.17.3 From f0b71dee2af09f074db90287866b955b389416d7 Mon Sep 17 00:00:00 2001 From: Alex Gaetano Padula Date: Sun, 17 Aug 2025 12:06:08 -0400 Subject: [PATCH 2/2] update ci to use latest go version, go 1.25 --- .github/workflows/race-tests.yml | 2 +- .github/workflows/wildcat_ci.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/race-tests.yml b/.github/workflows/race-tests.yml index e50d21c..a510bb9 100644 --- a/.github/workflows/race-tests.yml +++ b/.github/workflows/race-tests.yml @@ -16,7 +16,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v4 with: - go-version: '1.24.6' + go-version: '1.25' - name: Install dependencies run: go mod tidy - name: Run block manager race tests diff --git a/.github/workflows/wildcat_ci.yml b/.github/workflows/wildcat_ci.yml index 3f5ca24..d574f49 100644 --- a/.github/workflows/wildcat_ci.yml +++ b/.github/workflows/wildcat_ci.yml @@ -12,7 +12,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - go-version: ['1.24.6'] + go-version: ['1.25'] runs-on: ${{ matrix.os }} steps: