Skip to content

Commit 7847643

Browse files
committed
*: require Go 1.24.x
1 parent a2e0a21 commit 7847643

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.github/workflows/ci.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
linux:
1515
strategy:
1616
matrix:
17-
go: ["1.23", "1.24", "1.25"]
17+
go: ["1.24", "1.25"]
1818
runs-on: ubuntu-latest
1919
steps:
2020
- uses: actions/checkout@v2
@@ -31,7 +31,7 @@ jobs:
3131
linux-32bit:
3232
strategy:
3333
matrix:
34-
go: ["1.23"]
34+
go: ["1.24"]
3535
runs-on: ubuntu-latest
3636
steps:
3737
- uses: actions/checkout@v2
@@ -47,7 +47,7 @@ jobs:
4747
darwin:
4848
strategy:
4949
matrix:
50-
go: ["1.23"]
50+
go: ["1.24"]
5151
runs-on: macos-15
5252
steps:
5353
- uses: actions/checkout@v2
@@ -63,7 +63,7 @@ jobs:
6363
linux-stress:
6464
strategy:
6565
matrix:
66-
go: ["1.23"]
66+
go: ["1.24"]
6767
runs-on: ubuntu-latest
6868
steps:
6969
- uses: actions/checkout@v2
@@ -80,7 +80,7 @@ jobs:
8080
linux-stress-race:
8181
strategy:
8282
matrix:
83-
go: ["1.23"]
83+
go: ["1.24"]
8484
runs-on: ubuntu-latest
8585
steps:
8686
- uses: actions/checkout@v2
@@ -97,7 +97,7 @@ jobs:
9797
linux-cockroach-go:
9898
runs-on: ubuntu-latest
9999
env:
100-
GO_BRANCH: cockroach-go1.23.12
100+
GO_BRANCH: cockroach-go1.25.3
101101

102102
steps:
103103
- uses: actions/checkout@v4
@@ -120,7 +120,7 @@ jobs:
120120
- name: Install bootstrap Go
121121
uses: actions/setup-go@v5
122122
with:
123-
go-version: "1.23.x"
123+
go-version: "1.24.x"
124124

125125
# Step 4: Run tests with custom Go
126126
- run: ./scripts/run-tests-with-custom-go.sh ./...

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module github.com/cockroachdb/crlib
22

3-
go 1.23
3+
go 1.24

internal/devtools/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
module github.com/cockroachdb/crlib/internal/devtools
22

3-
go 1.23
3+
go 1.24
44

5-
toolchain go1.24.2
5+
toolchain go1.24.10
66

77
require (
88
github.com/cockroachdb/crlfmt v0.2.1

scripts/run-tests-with-custom-go.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ GO_REPO="https://github.com/cockroachdb/go.git"
1414
GO_SHA="${GO_SHA:-}"
1515

1616
if [ -z "$GO_SHA" ]; then
17-
GO_BRANCH="${GO_BRANCH:-cockroach-go1.23.12}"
17+
GO_BRANCH="${GO_BRANCH:-cockroach-go1.25.3}"
1818
echo "==> Resolving latest SHA for branch $GO_BRANCH..."
1919
GO_SHA=$(git ls-remote "$GO_REPO" "refs/heads/$GO_BRANCH" | cut -f1)
2020
fi

0 commit comments

Comments
 (0)