Skip to content

Commit 6b8091c

Browse files
authored
Drop support for Go 1.23 (#467)
* Drop support for Go 1.23 * Update README.md * Drop testing support for Go 1.23
1 parent 88af9ba commit 6b8091c

File tree

10 files changed

+9
-10
lines changed

10 files changed

+9
-10
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
compatibility-test:
2828
strategy:
2929
matrix:
30-
go-version: ["~1.25.0", "~1.24.0", "~1.23.0"]
30+
go-version: ["~1.25.0", "~1.24.0"]
3131
runs-on: ubuntu-latest
3232
steps:
3333
- name: Checkout code

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ This project is tested on the following systems.
6969
| -------- | ---------- |
7070
| Ubuntu | 1.25 |
7171
| Ubuntu | 1.24 |
72-
| Ubuntu | 1.23 |
7372

7473
While this project should work for other systems, no compatibility guarantees
7574
are made for those systems currently.

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module go.opentelemetry.io/proto
22

3-
go 1.23.0
3+
go 1.24.0

internal/tools/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module go.opentelemetry.io/proto/internal/tools
22

3-
go 1.23.0
3+
go 1.24.0
44

55
require go.opentelemetry.io/build-tools/multimod v0.26.2
66

otlp/collector/profiles/v1development/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module go.opentelemetry.io/proto/otlp/collector/profiles/v1development
22

3-
go 1.23.0
3+
go 1.24.0
44

55
require (
66
github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.2

otlp/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module go.opentelemetry.io/proto/otlp
22

3-
go 1.23.0
3+
go 1.24.0
44

55
require (
66
github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.2

otlp/profiles/v1development/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module go.opentelemetry.io/proto/otlp/profiles/v1development
22

3-
go 1.23.0
3+
go 1.24.0
44

55
require (
66
go.opentelemetry.io/proto/otlp v1.8.0

slim/otlp/collector/profiles/v1development/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module go.opentelemetry.io/proto/slim/otlp/collector/profiles/v1development
22

3-
go 1.23.0
3+
go 1.24.0
44

55
require (
66
go.opentelemetry.io/proto/slim/otlp/profiles/v1development v0.0.0-20250721084824-6f76ca90124d

slim/otlp/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module go.opentelemetry.io/proto/slim/otlp
22

3-
go 1.23.0
3+
go 1.24.0
44

55
require google.golang.org/protobuf v1.36.10

slim/otlp/profiles/v1development/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module go.opentelemetry.io/proto/slim/otlp/profiles/v1development
22

3-
go 1.23.0
3+
go 1.24.0
44

55
require (
66
go.opentelemetry.io/proto/slim/otlp v1.8.0

0 commit comments

Comments
 (0)