Skip to content

Commit 15a026d

Browse files
committed
chore: update deps
Signed-off-by: Christian Stewart <christian@aperture.us>
1 parent 7a89680 commit 15a026d

File tree

7 files changed

+610
-785
lines changed

7 files changed

+610
-785
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,19 +50,19 @@ jobs:
5050
${{ runner.os }}-go-
5151
5252
- name: Setup Node.JS ${{ matrix.node }}
53-
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
53+
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
5454
with:
5555
node-version: ${{ matrix.node }}
5656
cache: 'yarn'
5757

5858
- name: Initialize CodeQL
59-
uses: github/codeql-action/init@192325c86100d080feab897ff886c34abd4c83a3 # v3.30.3
59+
uses: github/codeql-action/init@f443b600d91635bebf5b0d9ebc620189c0d6fba5 # v4.30.8
6060
with:
6161
languages: ${{ matrix.language }}
6262

6363

6464
- name: Autobuild
65-
uses: github/codeql-action/autobuild@192325c86100d080feab897ff886c34abd4c83a3 # v3.30.3
65+
uses: github/codeql-action/autobuild@f443b600d91635bebf5b0d9ebc620189c0d6fba5 # v4.30.8
6666

6767
- name: Perform CodeQL Analysis
68-
uses: github/codeql-action/analyze@192325c86100d080feab897ff886c34abd4c83a3 # v3.30.3
68+
uses: github/codeql-action/analyze@f443b600d91635bebf5b0d9ebc620189c0d6fba5 # v4.30.8

.github/workflows/dependency-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ jobs:
1717
- name: 'Checkout Repository'
1818
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
1919
- name: 'Dependency Review'
20-
uses: actions/dependency-review-action@595b5aeba73380359d98a5e087f648dbb0edce1b # v4.7.3
20+
uses: actions/dependency-review-action@40c09b7dc99638e5ddb0bfd91c1673effc064d8a # v4.8.1

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
go-version: ${{ matrix.go }}
2929

3030
- name: Setup Node.JS ${{ matrix.node }}
31-
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
31+
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
3232
with:
3333
node-version: ${{ matrix.node }}
3434
cache: 'yarn'

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ require (
1919

2020
require (
2121
github.com/coder/websocket v1.8.14 // latest
22-
github.com/libp2p/go-libp2p v0.43.0 // latest
22+
github.com/libp2p/go-libp2p v0.44.0 // latest
2323
github.com/pkg/errors v0.9.1 // latest
2424
github.com/sirupsen/logrus v1.9.3 // latest
25-
google.golang.org/protobuf v1.36.9 // latest
25+
google.golang.org/protobuf v1.36.10 // latest
2626
)
2727

2828
require github.com/libp2p/go-yamux/v4 v4.0.1

go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,8 @@ golang.org/x/sys v0.34.0 h1:H5Y5sJ2L2JRdyv7ROF1he/lPdvFsd0mJHFw2ThKHxLA=
6363
golang.org/x/sys v0.34.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k=
6464
google.golang.org/protobuf v1.36.9 h1:w2gp2mA27hUeUzj9Ex9FBjsBm40zfaDtEWow293U7Iw=
6565
google.golang.org/protobuf v1.36.9/go.mod h1:fuxRtAxBytpl4zzqUh6/eyUujkJdNiuEkXntxiD/uRU=
66+
google.golang.org/protobuf v1.36.10 h1:AYd7cD/uASjIL6Q9LiTjz8JLcrh/88q5UObnmY3aOOE=
67+
google.golang.org/protobuf v1.36.10/go.mod h1:HTf+CrKn2C3g5S8VImy6tdcUvCska2kB7j23XfzDpco=
6668
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
6769
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
6870
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=

tools/go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ require (
1313
)
1414

1515
require (
16-
github.com/evanw/esbuild v0.25.9
17-
github.com/golangci/golangci-lint/v2 v2.4.0
16+
github.com/evanw/esbuild v0.25.10
17+
github.com/golangci/golangci-lint/v2 v2.5.0
1818
github.com/psampaz/go-mod-outdated v0.9.0
19-
golang.org/x/tools v0.37.0
19+
golang.org/x/tools v0.38.0
2020
mvdan.cc/gofumpt v0.9.1
2121
)
2222

yarn.lock

Lines changed: 597 additions & 774 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)