Skip to content

Commit 5d018b9

Browse files
committed
Revert "go.mod: require go1.24"
This reverts commit 4be89e7.
1 parent e8604b9 commit 5d018b9

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/nightlies.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
go: [ '1.24' ]
13+
go: [ '1.23', '1.24' ]
1414
uses: ./.github/workflows/tests.yaml
1515
with:
1616
sha: ${{ github.sha }}
@@ -21,7 +21,7 @@ jobs:
2121
strategy:
2222
fail-fast: false
2323
matrix:
24-
go: [ '1.24' ]
24+
go: [ '1.23', '1.24' ]
2525
uses: ./.github/workflows/s390x.yaml
2626
with:
2727
sha: ${{ github.sha }}
@@ -32,7 +32,7 @@ jobs:
3232
strategy:
3333
fail-fast: false
3434
matrix:
35-
go: [ '1.24' ]
35+
go: [ '1.23', '1.24' ]
3636
uses: ./.github/workflows/stress.yaml
3737
with:
3838
sha: ${{ github.sha }}
@@ -43,7 +43,7 @@ jobs:
4343
strategy:
4444
fail-fast: false
4545
matrix:
46-
go: [ '1.24' ]
46+
go: [ '1.23', '1.24' ]
4747
uses: ./.github/workflows/instrumented.yaml
4848
with:
4949
sha: ${{ github.sha }}

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ stress-crossversion:
8282

8383
.PHONY: test-s390x-qemu
8484
test-s390x-qemu: TAGS += slowbuild
85-
test-s390x-qemu: S390X_GOVERSION := 1.24
85+
test-s390x-qemu: S390X_GOVERSION := 1.23
8686
test-s390x-qemu:
8787
@echo "Running tests on s390x using QEMU"
8888
@echo "Requires a recent linux with docker and qemu-user-static installed"

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,4 @@ require (
5353
gopkg.in/yaml.v3 v3.0.1 // indirect
5454
)
5555

56-
go 1.24.5
56+
go 1.23

internal/devtools/go.mod

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

3-
go 1.24.5
3+
go 1.23.6
44

55
require (
66
github.com/cockroachdb/cockroach v0.0.0-20250225003441-0fd08b1c5cc1

0 commit comments

Comments
 (0)