Skip to content

Commit cfd8fd5

Browse files
fix(deps): update all dependencies
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent f4fc2d5 commit cfd8fd5

8 files changed

Lines changed: 43 additions & 25 deletions

File tree

.github/workflows/codeql-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ jobs:
2727

2828
steps:
2929
- name: Checkout repository
30-
uses: actions/checkout@v6
30+
uses: actions/checkout@v7
3131

3232
- uses: actions/setup-go@v6
3333
with:
3434
go-version: '1.26'
3535

3636
- name: Cache Go modules
37-
uses: actions/cache/restore@v5
37+
uses: actions/cache/restore@v6
3838
with:
3939
path: |
4040
~/.cache/go-build

.github/workflows/dco.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: Check DCO Sign-off
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
15+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
1616
with:
1717
fetch-depth: 0
1818

.github/workflows/dependency-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: 'Checkout Repository'
16-
uses: actions/checkout@v6
16+
uses: actions/checkout@v7
1717
- name: 'Dependency Review'
1818
uses: actions/dependency-review-action@v5.0.0

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
contents: read
1717
id-token: write
1818
steps:
19-
- uses: actions/checkout@v6
19+
- uses: actions/checkout@v7
2020
- uses: oven-sh/setup-bun@v2
2121
- run: bun install --frozen-lockfile --ignore-scripts
2222
- run: bun run build
@@ -32,7 +32,7 @@ jobs:
3232
permissions:
3333
contents: read
3434
steps:
35-
- uses: actions/checkout@v6
35+
- uses: actions/checkout@v7
3636
- uses: actions-rust-lang/setup-rust-toolchain@v1
3737
- run: cargo publish -p starpc
3838
env:
@@ -43,7 +43,7 @@ jobs:
4343
permissions:
4444
contents: write
4545
steps:
46-
- uses: actions/checkout@v6
46+
- uses: actions/checkout@v7
4747
- name: Create GitHub Release
4848
env:
4949
GH_TOKEN: ${{ github.token }}

.github/workflows/tests.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: ubuntu-latest
2222
timeout-minutes: 10
2323
steps:
24-
- uses: actions/checkout@v6
24+
- uses: actions/checkout@v7
2525
- uses: oven-sh/setup-bun@v2
2626
- run: bun install
2727
- run: bun run build
@@ -34,13 +34,13 @@ jobs:
3434
runs-on: ubuntu-latest
3535
timeout-minutes: 10
3636
steps:
37-
- uses: actions/checkout@v6
37+
- uses: actions/checkout@v7
3838
- uses: oven-sh/setup-bun@v2
3939
- uses: actions/setup-go@v6
4040
with:
4141
go-version: '1.26'
4242
- name: Cache tools
43-
uses: actions/cache@v5
43+
uses: actions/cache@v6
4444
with:
4545
path: ./.tools
4646
key: ${{ runner.os }}-aptre-tools-${{ hashFiles('**/go.sum') }}
@@ -54,7 +54,7 @@ jobs:
5454
runs-on: ubuntu-latest
5555
timeout-minutes: 10
5656
steps:
57-
- uses: actions/checkout@v6
57+
- uses: actions/checkout@v7
5858
- uses: actions-rust-lang/setup-rust-toolchain@v1
5959
- run: cargo test --all-features
6060

@@ -63,15 +63,15 @@ jobs:
6363
runs-on: ubuntu-latest
6464
timeout-minutes: 10
6565
steps:
66-
- uses: actions/checkout@v6
66+
- uses: actions/checkout@v7
6767
- uses: oven-sh/setup-bun@v2
6868
- uses: actions/setup-go@v6
6969
with:
7070
go-version: '1.26'
7171
- name: Install native build cache/tools
7272
run: sudo apt-get update && sudo apt-get install -y ccache ninja-build
7373
- name: Cache C++ compiler outputs
74-
uses: actions/cache@v5
74+
uses: actions/cache@v6
7575
with:
7676
path: ~/.cache/ccache
7777
key: ${{ runner.os }}-ccache-${{ hashFiles('go.sum', 'CMakeLists.txt', 'srpc/CMakeLists.txt', 'srpc/**/*.cpp', 'srpc/**/*.hpp', 'srpc/**/*.cc', 'srpc/**/*.h', 'echo/**/*.cpp', 'echo/**/*.hpp', 'integration/cross-language/*.cpp', 'rpcstream/**/*.cpp', 'rpcstream/**/*.hpp', '**/*.pb.cc', '**/*.pb.h') }}
@@ -104,7 +104,7 @@ jobs:
104104
- 'rust:cpp'
105105
- 'cpp:cpp'
106106
steps:
107-
- uses: actions/checkout@v6
107+
- uses: actions/checkout@v7
108108
- uses: oven-sh/setup-bun@v2
109109
- uses: actions/setup-go@v6
110110
with:
@@ -114,7 +114,7 @@ jobs:
114114
run: sudo apt-get update && sudo apt-get install -y ccache ninja-build
115115
- run: bun install
116116
- name: Cache C++ compiler outputs
117-
uses: actions/cache@v5
117+
uses: actions/cache@v6
118118
with:
119119
path: ~/.cache/ccache
120120
key: ${{ runner.os }}-ccache-${{ hashFiles('go.sum', 'CMakeLists.txt', 'srpc/CMakeLists.txt', 'srpc/**/*.cpp', 'srpc/**/*.hpp', 'srpc/**/*.cc', 'srpc/**/*.h', 'echo/**/*.cpp', 'echo/**/*.hpp', 'integration/cross-language/*.cpp', 'rpcstream/**/*.cpp', 'rpcstream/**/*.hpp', '**/*.pb.cc', '**/*.pb.h') }}

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,4 +55,4 @@ scopeguard = { workspace = true }
5555
prost-build = { version = "0.14", optional = true }
5656
protoc-bin-vendored = { version = "3.2", optional = true }
5757
tokio-tungstenite = { version = "0.29", optional = true }
58-
yamux = { version = "0.13.10", optional = true }
58+
yamux = { version = "0.14.0", optional = true }

go.mod

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,31 +3,31 @@ module github.com/aperturerobotics/starpc
33
go 1.25.0
44

55
require (
6-
github.com/aperturerobotics/common v0.33.1-0.20260516193515-675cfc5a0c12 // latest
7-
github.com/aperturerobotics/protobuf-go-lite v0.13.0 // latest
8-
github.com/aperturerobotics/util v1.34.5 // latest
6+
github.com/aperturerobotics/common v0.34.2 // latest
7+
github.com/aperturerobotics/protobuf-go-lite v0.15.0 // latest
8+
github.com/aperturerobotics/util v1.34.9 // latest
99
)
1010

1111
require (
1212
github.com/aperturerobotics/abseil-cpp v0.0.0-20260131110040-4bb56e2f9017 // aperture-2
1313
github.com/aperturerobotics/cli v1.1.0 // indirect
1414
github.com/aperturerobotics/go-protoc-gen-prost v0.0.0-20260329113538-218ccd8f20e0 // indirect
1515
github.com/aperturerobotics/go-protoc-wasi v0.0.0-20260329113540-600516012db3 // indirect
16-
github.com/aperturerobotics/go-websocket v1.8.15-0.20260329113544-74dbfb8f11c6 // master
17-
github.com/aperturerobotics/json-iterator-lite v1.0.1-0.20251104042408-0c9eb8a3f726 // indirect
16+
github.com/aperturerobotics/go-websocket v1.8.15-0.20260619192713-a096778f08c1 // master
17+
github.com/aperturerobotics/json-iterator-lite v1.1.0 // indirect
1818
github.com/aperturerobotics/protobuf v0.0.0-20260203024654-8201686529c4 // wasi
1919
)
2020

2121
require (
2222
github.com/libp2p/go-yamux/v4 v4.0.2 // latest
2323
github.com/pkg/errors v0.9.1 // latest
24-
github.com/sirupsen/logrus v1.9.5-0.20260508084601-d4a50659cfd6 // latest
24+
github.com/sirupsen/logrus v1.9.5-0.20260629095817-a23d315dfebb // latest
2525
)
2626

2727
require (
2828
github.com/libp2p/go-buffer-pool v0.1.0 // indirect
29-
github.com/tetratelabs/wazero v1.11.0 // indirect
29+
github.com/tetratelabs/wazero v1.12.0 // indirect
3030
github.com/xrash/smetrics v0.0.0-20250705151800-55b8f293f342 // indirect
31-
golang.org/x/mod v0.35.0 // indirect
32-
golang.org/x/sys v0.44.0 // indirect
31+
golang.org/x/mod v0.37.0 // indirect
32+
golang.org/x/sys v0.45.0 // indirect
3333
)

go.sum

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,30 @@ github.com/aperturerobotics/cli v1.1.0 h1:7a+YRC+EY3npAnTzhHV5gLCiw91KS0Ts3XwLIL
44
github.com/aperturerobotics/cli v1.1.0/go.mod h1:M7BFP9wow5ytTzMyJQOOO991fGfsUqdTI7gGEsHfTQ8=
55
github.com/aperturerobotics/common v0.33.1-0.20260516193515-675cfc5a0c12 h1:KQiFEDyu5//G8JZ3yTN92kF2P3F+LHjSKsQikgROncU=
66
github.com/aperturerobotics/common v0.33.1-0.20260516193515-675cfc5a0c12/go.mod h1:pW7BhBpKzVrTxN8XIz6jb3MJERZ15GDxaGQ7jcIl0Xg=
7+
github.com/aperturerobotics/common v0.34.2 h1:sCUMicsPeKiBfhyhq/C7rOB7b7AZMrT1JqZum3trtB0=
8+
github.com/aperturerobotics/common v0.34.2/go.mod h1:uP0dF2Vzn2GRLB7ElbMAXvTun4MJpZF3281PR94yv7c=
79
github.com/aperturerobotics/go-protoc-gen-prost v0.0.0-20260329113538-218ccd8f20e0 h1:6/3RSSlPEQ6LeidslB1ZCJkxW+MnfYDkvdWMDklDXw4=
810
github.com/aperturerobotics/go-protoc-gen-prost v0.0.0-20260329113538-218ccd8f20e0/go.mod h1:OBb/beWmr/pDIZAUfi86j/4tBh2v5ctTxKMqSnh9c/4=
911
github.com/aperturerobotics/go-protoc-wasi v0.0.0-20260329113540-600516012db3 h1:lp+V8RYcBwTX1p81swkpZn5fhw1wn2xLorzETIxRyZQ=
1012
github.com/aperturerobotics/go-protoc-wasi v0.0.0-20260329113540-600516012db3/go.mod h1:vEq8i7EKb32+KXGtIEZjjhNns+BdsL2dUMw4uhy3578=
1113
github.com/aperturerobotics/go-websocket v1.8.15-0.20260329113544-74dbfb8f11c6 h1:Utc1F7jdCc6/HrwwIikJFXt/hXxkWIWETLp/CsG6Gl0=
1214
github.com/aperturerobotics/go-websocket v1.8.15-0.20260329113544-74dbfb8f11c6/go.mod h1:9KnSGuqxSXbdB/Oi0I6vvfPLkclfJwMGAQaDDGVgGow=
15+
github.com/aperturerobotics/go-websocket v1.8.15-0.20260619192713-a096778f08c1 h1:q2qkdNOrnhAFf6B7TBeUoAYstYWxPvozN+3vJi2jgp0=
16+
github.com/aperturerobotics/go-websocket v1.8.15-0.20260619192713-a096778f08c1/go.mod h1:9KnSGuqxSXbdB/Oi0I6vvfPLkclfJwMGAQaDDGVgGow=
1317
github.com/aperturerobotics/json-iterator-lite v1.0.1-0.20251104042408-0c9eb8a3f726 h1:4B1F0DzuqPzb6WqgCjWaqDD7JU9RDsevQG5OP0DFBgs=
1418
github.com/aperturerobotics/json-iterator-lite v1.0.1-0.20251104042408-0c9eb8a3f726/go.mod h1:SvGGBv3OVxUyqO0ZxA/nvs6z3cg7NIbZ64TnbV2OISo=
19+
github.com/aperturerobotics/json-iterator-lite v1.1.0 h1:ZLLqHhHTKYlmCAP873ras2e/yVU/THtwC+ji3tXLMMg=
20+
github.com/aperturerobotics/json-iterator-lite v1.1.0/go.mod h1:SvGGBv3OVxUyqO0ZxA/nvs6z3cg7NIbZ64TnbV2OISo=
1521
github.com/aperturerobotics/protobuf v0.0.0-20260203024654-8201686529c4 h1:4Dy3BAHh2kgVdHAqtlwcFsgY0kAwUe2m3rfFcaGwGQg=
1622
github.com/aperturerobotics/protobuf v0.0.0-20260203024654-8201686529c4/go.mod h1:tMgO7y6SJo/d9ZcvrpNqIQtdYT9de+QmYaHOZ4KnhOg=
1723
github.com/aperturerobotics/protobuf-go-lite v0.13.0 h1:jEvCJhHaJEikDY/va2AUnS0DOb/0n82aISLAqxSh4Sk=
1824
github.com/aperturerobotics/protobuf-go-lite v0.13.0/go.mod h1:lGH3s5ArCTXKI4wJdlNpaybUtwSjfAG0vdWjxOfMcF8=
25+
github.com/aperturerobotics/protobuf-go-lite v0.15.0 h1:Ke9pkt5zO5iQf2q7iAYsXHlCDhGeQH0cvhCTIiiWUIg=
26+
github.com/aperturerobotics/protobuf-go-lite v0.15.0/go.mod h1:3Ay/E7iaw2KWLirK3+dDdNJZHK0hu8Y1/kKeYeUa+8s=
1927
github.com/aperturerobotics/util v1.34.5 h1:007MaOJrrsiGm5o1c8Tt7p8nVwUAxkM6pmGflrBww/U=
2028
github.com/aperturerobotics/util v1.34.5/go.mod h1:mDe7WnncVuV7yjeeVSsagyfrw4xfncu7d+f0+d70niY=
29+
github.com/aperturerobotics/util v1.34.9 h1:Eyhu1Citt+od7jKIb+Q92h/CEujWCFsvdvJavQeoRjM=
30+
github.com/aperturerobotics/util v1.34.9/go.mod h1:GxjGkYQNEj8xvLFz+T8ifqANtK5cMesOlCxh50htvBI=
2131
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
2232
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
2333
github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8=
@@ -32,16 +42,24 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb
3242
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
3343
github.com/sirupsen/logrus v1.9.5-0.20260508084601-d4a50659cfd6 h1:D6qewLO/pJ+JvUwuri1dmCbc32d/eO+xyqg+p3N+9kA=
3444
github.com/sirupsen/logrus v1.9.5-0.20260508084601-d4a50659cfd6/go.mod h1:FXZFonkDAnFozmO+5hGAFvB0Yg9/j2SIhA/QuIkP180=
45+
github.com/sirupsen/logrus v1.9.5-0.20260629095817-a23d315dfebb h1:+C8W2sTMIRbihe5hQH6JuT2mi3m/QgdGf0YdFyx2azA=
46+
github.com/sirupsen/logrus v1.9.5-0.20260629095817-a23d315dfebb/go.mod h1:FXZFonkDAnFozmO+5hGAFvB0Yg9/j2SIhA/QuIkP180=
3547
github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U=
3648
github.com/stretchr/testify v1.11.1/go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U=
3749
github.com/tetratelabs/wazero v1.11.0 h1:+gKemEuKCTevU4d7ZTzlsvgd1uaToIDtlQlmNbwqYhA=
3850
github.com/tetratelabs/wazero v1.11.0/go.mod h1:eV28rsN8Q+xwjogd7f4/Pp4xFxO7uOGbLcD/LzB1wiU=
51+
github.com/tetratelabs/wazero v1.12.0 h1:DuWcpNu/FzgEXgGBDp8J1Spc+CWOvvtvVyjKlaZopYU=
52+
github.com/tetratelabs/wazero v1.12.0/go.mod h1:LvKtzl2RqO4gyF27BiXU+nKAjcV8f38U+kP/q2vgxh0=
3953
github.com/xrash/smetrics v0.0.0-20250705151800-55b8f293f342 h1:FnBeRrxr7OU4VvAzt5X7s6266i6cSVkkFPS0TuXWbIg=
4054
github.com/xrash/smetrics v0.0.0-20250705151800-55b8f293f342/go.mod h1:Ohn+xnUBiLI6FVj/9LpzZWtj1/D6lUovWYBkxHVV3aM=
4155
golang.org/x/mod v0.35.0 h1:Ww1D637e6Pg+Zb2KrWfHQUnH2dQRLBQyAtpr/haaJeM=
4256
golang.org/x/mod v0.35.0/go.mod h1:+GwiRhIInF8wPm+4AoT6L0FA1QWAad3OMdTRx4tFYlU=
57+
golang.org/x/mod v0.37.0 h1:vF1DjpVEshcIqoEaauuHebaLk1O1forxjxBaVn884JQ=
58+
golang.org/x/mod v0.37.0/go.mod h1:m8S8VeM9r4dzDwjrKO0a1sZP3YjeMamRRlD+fmR2Q/0=
4359
golang.org/x/sys v0.44.0 h1:ildZl3J4uzeKP07r2F++Op7E9B29JRUy+a27EibtBTQ=
4460
golang.org/x/sys v0.44.0/go.mod h1:4GL1E5IUh+htKOUEOaiffhrAeqysfVGipDYzABqnCmw=
61+
golang.org/x/sys v0.45.0 h1:dO4czNzziLiiXplLQgBCEpCvXQ3dnkn0SdaZSYdQ+FY=
62+
golang.org/x/sys v0.45.0/go.mod h1:4GL1E5IUh+htKOUEOaiffhrAeqysfVGipDYzABqnCmw=
4563
google.golang.org/protobuf v1.36.11 h1:fV6ZwhNocDyBLK0dj+fg8ektcVegBBuEolpbTQyBNVE=
4664
google.golang.org/protobuf v1.36.11/go.mod h1:HTf+CrKn2C3g5S8VImy6tdcUvCska2kB7j23XfzDpco=
4765
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=

0 commit comments

Comments
 (0)