Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.25.x'
go-version: '1.26.x'
- name: Build
run: make build
- name: Test
Expand All @@ -30,7 +30,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.25.x'
go-version: '1.26.x'
- name: Install staticcheck
run: go install honnef.co/go/tools/cmd/staticcheck@latest
- uses: golangci/golangci-lint-action@v7
Expand Down
2 changes: 1 addition & 1 deletion examples/drpc/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module storj.io/drpc/examples/drpc

go 1.19
go 1.26.5

require (
google.golang.org/protobuf v1.27.1
Expand Down
2 changes: 1 addition & 1 deletion examples/grpc_and_drpc/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module storj.io/drpc/examples/grpc_and_drpc

go 1.19
go 1.26.5

require (
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module storj.io/drpc

go 1.23.0
go 1.26.5

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

crdb is still on 1.26.4, maybe bump till there would be better?


require (
github.com/stretchr/testify v1.10.0
Expand Down
2 changes: 1 addition & 1 deletion internal/backcompat/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module storj.io/drpc/internal/backcompat

go 1.19
go 1.26.5

require (
github.com/zeebo/assert v1.3.0
Expand Down
2 changes: 1 addition & 1 deletion internal/backcompat/newservice/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module storj.io/drpc/internal/backcompat/newservice

go 1.19
go 1.26.5

require storj.io/drpc/internal/backcompat v0.0.0-00010101000000-000000000000

Expand Down
2 changes: 1 addition & 1 deletion internal/backcompat/newservicedefs/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module storj.io/drpc/internal/backcompat/newservicedefs

go 1.19
go 1.26.5

require (
google.golang.org/protobuf v1.27.1
Expand Down
2 changes: 1 addition & 1 deletion internal/backcompat/oldservice/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module storj.io/drpc/internal/backcompat/oldservice

go 1.19
go 1.26.5

require storj.io/drpc/internal/backcompat v0.0.0-00010101000000-000000000000

Expand Down
2 changes: 1 addition & 1 deletion internal/backcompat/oldservicedefs/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module storj.io/drpc/internal/backcompat/oldservicedefs

go 1.19
go 1.26.5

require (
github.com/gogo/protobuf v1.3.2
Expand Down
2 changes: 1 addition & 1 deletion internal/backcompat/servicedefs/go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module storj.io/drpc/internal/backcompat/servicedefs

go 1.19
go 1.26.5
2 changes: 1 addition & 1 deletion internal/grpccompat/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module storj.io/drpc/internal/grpccompat

go 1.23.0
go 1.26.5

require (
github.com/zeebo/assert v1.3.1
Expand Down
2 changes: 1 addition & 1 deletion internal/integration/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module storj.io/drpc/internal/integration

go 1.25.0
go 1.26.5

require (
github.com/gogo/protobuf v1.3.2
Expand Down
Loading