File tree Expand file tree Collapse file tree 7 files changed +290
-199
lines changed Expand file tree Collapse file tree 7 files changed +290
-199
lines changed Original file line number Diff line number Diff line change @@ -35,23 +35,23 @@ jobs:
35
35
uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
36
36
37
37
- name : Setup Go ${{ matrix.go }}
38
- uses : actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2 .0
38
+ uses : actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5 .0
39
39
with :
40
40
go-version : ${{ matrix.go }}
41
41
42
42
- name : Setup Node.JS ${{ matrix.node }}
43
- uses : actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1 .0
43
+ uses : actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4 .0
44
44
with :
45
45
node-version : ${{ matrix.node }}
46
46
cache : ' yarn'
47
47
48
48
- name : Initialize CodeQL
49
- uses : github/codeql-action/init@48ab28a6f5dbc2a99bf1e0131198dd8f1df78169 # v3.28.0
49
+ uses : github/codeql-action/init@a4e1a019f5e24960714ff6296aee04b736cbc3cf # v3.29.6
50
50
with :
51
51
languages : ${{ matrix.language }}
52
52
53
53
- name : Autobuild
54
- uses : github/codeql-action/autobuild@48ab28a6f5dbc2a99bf1e0131198dd8f1df78169 # v3.28.0
54
+ uses : github/codeql-action/autobuild@a4e1a019f5e24960714ff6296aee04b736cbc3cf # v3.29.6
55
55
56
56
- name : Perform CodeQL Analysis
57
- uses : github/codeql-action/analyze@48ab28a6f5dbc2a99bf1e0131198dd8f1df78169 # v3.28.0
57
+ uses : github/codeql-action/analyze@a4e1a019f5e24960714ff6296aee04b736cbc3cf # v3.29.6
Original file line number Diff line number Diff line change 17
17
- name : ' Checkout Repository'
18
18
uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
19
19
- name : ' Dependency Review'
20
- uses : actions/dependency-review-action@3b139cfc5fae8b618d3eae3675e383bb1769c019 # v4.5.0
20
+ uses : actions/dependency-review-action@da24556b548a50705dd671f47852072ea4c105d9 # v4.7.1
Original file line number Diff line number Diff line change @@ -23,12 +23,12 @@ jobs:
23
23
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
24
24
25
25
- name : Setup Go ${{ matrix.go }}
26
- uses : actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2 .0
26
+ uses : actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5 .0
27
27
with :
28
28
go-version : ${{ matrix.go }}
29
29
30
30
- name : Setup Node.JS ${{ matrix.node }}
31
- uses : actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1 .0
31
+ uses : actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4 .0
32
32
with :
33
33
node-version : ${{ matrix.node }}
34
34
cache : ' yarn'
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ module github.com/aperturerobotics/template
2
2
3
3
go 1.24
4
4
5
- toolchain go1.24.2
5
+ toolchain go1.24.6
6
6
7
7
replace (
8
8
// This fork uses go-protobuf-lite and adds post-quantum crypto support.
@@ -13,10 +13,10 @@ replace (
13
13
)
14
14
15
15
require (
16
- github.com/aperturerobotics/common v0.22.7 // latest
16
+ github.com/aperturerobotics/common v0.22.10 // latest
17
17
github.com/aperturerobotics/json-iterator-lite v1.0.1-0.20250712004945-4e5f8882b0b8 // indirect
18
- github.com/aperturerobotics/protobuf-go-lite v0.9.1 // latest
19
- github.com/aperturerobotics/starpc v0.39.6 // latest
18
+ github.com/aperturerobotics/protobuf-go-lite v0.11.0 // latest
19
+ github.com/aperturerobotics/starpc v0.39.7 // latest
20
20
github.com/aperturerobotics/util v1.31.0 // indirect
21
21
)
22
22
@@ -25,7 +25,7 @@ require (
25
25
github.com/ipfs/go-cid v0.5.0 // indirect
26
26
github.com/klauspost/cpuid/v2 v2.2.10 // indirect
27
27
github.com/libp2p/go-buffer-pool v0.1.0 // indirect
28
- github.com/libp2p/go-libp2p v0.42.0 // indirect
28
+ github.com/libp2p/go-libp2p v0.42.1 // indirect
29
29
github.com/libp2p/go-yamux/v4 v4.0.1 // indirect
30
30
github.com/minio/sha256-simd v1.0.1 // indirect
31
31
github.com/mr-tron/base58 v1.2.0 // indirect
Original file line number Diff line number Diff line change 1
1
github.com/aperturerobotics/common v0.22.7 h1:gMtJLKVSe+WVHe4JNZJWfGsCwv4ajGLfzkbceEEdswk =
2
2
github.com/aperturerobotics/common v0.22.7 /go.mod h1:wsPfDVCTNpGHddg/MSfm84rKoO4GAvb+TQtATXz+pKY =
3
+ github.com/aperturerobotics/common v0.22.10 h1:XFfXq9NGrirjW6rtqq525qiY1IN+1siGBZwIsvBJGfQ =
4
+ github.com/aperturerobotics/common v0.22.10 /go.mod h1:xMXHNN6oCvG0FfG1tY6+2Si7iWh1QfSSCSrqohFUeIk =
3
5
github.com/aperturerobotics/go-libp2p v0.37.1-0.20241111002741-5cfbb50b74e0 h1:tGwbeDoEeQCrUQL+ClUywldqvz9eRmhcVrGwGxz2xJg =
4
6
github.com/aperturerobotics/go-libp2p v0.37.1-0.20241111002741-5cfbb50b74e0 /go.mod h1:FJkAtQcP9XxqG1NNLNHKm+wLVIGSCQX2s6CEoD+w97g =
5
7
github.com/aperturerobotics/json-iterator-lite v1.0.1-0.20250712004945-4e5f8882b0b8 h1:ht7OY1rv7oVmki0/pRYL7e4W0iWtisX+RqS/2yXOwxQ =
6
8
github.com/aperturerobotics/json-iterator-lite v1.0.1-0.20250712004945-4e5f8882b0b8 /go.mod h1:SvGGBv3OVxUyqO0ZxA/nvs6z3cg7NIbZ64TnbV2OISo =
7
9
github.com/aperturerobotics/protobuf-go-lite v0.9.1 h1:P1knXKnwLJpVE8fmeXYGckKu79IhqUvKRdCfJNR0MwQ =
8
10
github.com/aperturerobotics/protobuf-go-lite v0.9.1 /go.mod h1:fULrxQxEBWKQm7vvju9AfjTp9yfHoLgwMQWTiZQ2tg0 =
11
+ github.com/aperturerobotics/protobuf-go-lite v0.11.0 h1:IAaZISqrEpodqECYxk0yKWgROEbZtMhs7bErP+Zma9o =
12
+ github.com/aperturerobotics/protobuf-go-lite v0.11.0 /go.mod h1:c4kGy7Dkfz6B1m0t4QBIMQoNeQ7m+nYj3Qxxnlwhygo =
9
13
github.com/aperturerobotics/starpc v0.39.6 h1:z86Q5F1+5TiQcpn9uxrbBRRSo8VRChaiO9yzpvrP+Ec =
10
14
github.com/aperturerobotics/starpc v0.39.6 /go.mod h1:q8PqoL5FUP1LR2OfJTdVpX+XOxqiHoEVqrH/H0YmKu0 =
15
+ github.com/aperturerobotics/starpc v0.39.7 h1:ztYLrVD5KfzBU6CP3rE0M4/K0lNx9S/I6E2slJXGBHI =
16
+ github.com/aperturerobotics/starpc v0.39.7 /go.mod h1:2+rc+xB4EMF3StlJGyqO5Jaq7OyDFQR0J0McVtOA7CI =
11
17
github.com/aperturerobotics/util v1.31.0 h1:094JjGljJCyd6uq5HfbFR//GGsMgN362TOhvEh78JyI =
12
18
github.com/aperturerobotics/util v1.31.0 /go.mod h1:vGqsy9755l+MpoPgNvXn40EQu/Xn2n+BQ7XBNKHBirs =
13
19
github.com/coder/websocket v1.8.13 h1:f3QZdXy7uGVz+4uCJy2nTZyM0yTBj8yANEHhqlXZ9FE =
Original file line number Diff line number Diff line change 45
45
"precommit" : " npm run format"
46
46
},
47
47
"devDependencies" : {
48
- "@aptre/common" : " ^0.21.2 " ,
48
+ "@aptre/common" : " ^0.22.0 " ,
49
49
"@types/react" : " ^19.1.2" ,
50
50
"@types/react-dom" : " ^19.1.2" ,
51
- "@vitejs/plugin-react" : " ^4.4 .0" ,
51
+ "@vitejs/plugin-react" : " ^5.0 .0" ,
52
52
"depcheck" : " ^1.4.7" ,
53
53
"globals" : " ^16.0.0" ,
54
54
"prettier" : " ^3.5.3" ,
57
57
"vite" : " ^6.2.6"
58
58
},
59
59
"dependencies" : {
60
- "@aptre/protobuf-es-lite" : " ^0.4.1 " ,
60
+ "@aptre/protobuf-es-lite" : " ^0.5.0 " ,
61
61
"react" : " ^19.1.0" ,
62
62
"react-dom" : " ^19.1.0" ,
63
- "starpc" : " ^0.38.1 "
63
+ "starpc" : " ^0.39.0 "
64
64
},
65
65
"resolutions" : {
66
- "@aptre/protobuf-es-lite" : " ^0.4.1 "
66
+ "@aptre/protobuf-es-lite" : " ^0.5.0 "
67
67
}
68
68
}
You can’t perform that action at this time.
0 commit comments