Skip to content

Commit 8c26e29

Browse files
fix(deps): update all dependencies
1 parent c3d9f80 commit 8c26e29

File tree

5 files changed

+121
-47
lines changed

5 files changed

+121
-47
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,20 +31,20 @@ jobs:
3131

3232
steps:
3333
- name: Checkout repository
34-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
34+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
3535

3636
- name: Setup Go ${{ matrix.go }}
37-
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
37+
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
3838
with:
3939
go-version: ${{ matrix.go }}
4040

4141
- name: Initialize CodeQL
42-
uses: github/codeql-action/init@39edc492dbe16b1465b0cafca41432d857bdb31a # v3.29.1
42+
uses: github/codeql-action/init@0499de31b99561a6d14a36a5f662c2a54f91beee # v4.31.2
4343
with:
4444
languages: ${{ matrix.language }}
4545

4646
- name: Autobuild
47-
uses: github/codeql-action/autobuild@39edc492dbe16b1465b0cafca41432d857bdb31a # v3.29.1
47+
uses: github/codeql-action/autobuild@0499de31b99561a6d14a36a5f662c2a54f91beee # v4.31.2
4848

4949
- name: Perform CodeQL Analysis
50-
uses: github/codeql-action/analyze@39edc492dbe16b1465b0cafca41432d857bdb31a # v3.29.1
50+
uses: github/codeql-action/analyze@0499de31b99561a6d14a36a5f662c2a54f91beee # v4.31.2

.github/workflows/dependency-review.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: 'Checkout Repository'
18-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
18+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
1919
- name: 'Dependency Review'
20-
uses: actions/dependency-review-action@da24556b548a50705dd671f47852072ea4c105d9 # v4.7.1
20+
uses: actions/dependency-review-action@3c4e3dcb1aa7874d2c16be7d79418e9b7efd6261 # v4.8.2

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ jobs:
1919
go: ['1.25']
2020
timeout-minutes: 10
2121
steps:
22-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
22+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2323
- name: Setup Go ${{ matrix.go }}
24-
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
24+
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
2525
with:
2626
go-version: ${{ matrix.go }}
2727
- name: Test Go

go.mod

Lines changed: 40 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
module github.com/aperturerobotics/cayley
22

3-
go 1.24
3+
go 1.24.0
44

5-
toolchain go1.24.4
5+
toolchain go1.25.4
66

77
require (
8-
github.com/aperturerobotics/common v0.22.5
9-
github.com/aperturerobotics/protobuf-go-lite v0.9.1
8+
github.com/aperturerobotics/common v0.22.12
9+
github.com/aperturerobotics/protobuf-go-lite v0.11.0
1010
github.com/badgerodon/peg v0.0.0-20130729175151-9e5f7f4d07ca
11-
github.com/cockroachdb/pebble/v2 v2.0.6
11+
github.com/cockroachdb/pebble/v2 v2.1.1
1212
github.com/cznic/mathutil v0.0.0-20181122101859-297441e03548
1313
github.com/dennwc/graphql v0.4.19-0.20180603144102-12cfed44bc5d
14-
github.com/dgraph-io/badger/v4 v4.7.0
15-
github.com/docker/docker v27.5.1+incompatible // indirect
16-
github.com/dop251/goja v0.0.0-20250624190929-4d26883d182a
17-
github.com/fsouza/go-dockerclient v1.12.1
14+
github.com/dgraph-io/badger/v4 v4.8.0
15+
github.com/docker/docker v28.3.3+incompatible // indirect
16+
github.com/dop251/goja v0.0.0-20251103141225-af2ceb9156d7
17+
github.com/fsouza/go-dockerclient v1.12.2
1818
github.com/go-sql-driver/mysql v1.9.3
1919
github.com/golang/glog v1.2.5
2020
github.com/jackc/pgx v3.6.2+incompatible
@@ -23,21 +23,21 @@ require (
2323
github.com/mattn/go-sqlite3 v2.0.3+incompatible
2424
github.com/mr-tron/base58 v1.2.0
2525
github.com/peterh/liner v1.2.2
26-
github.com/piprate/json-gold v0.6.0
27-
github.com/spf13/cobra v1.9.1
28-
github.com/spf13/viper v1.20.1
29-
github.com/stretchr/testify v1.10.0
30-
github.com/tylertreat/BoomFilters v0.0.0-20250603162721-abf33679c3cf
26+
github.com/piprate/json-gold v0.7.0
27+
github.com/spf13/cobra v1.10.1
28+
github.com/spf13/viper v1.21.0
29+
github.com/stretchr/testify v1.11.1
30+
github.com/tylertreat/BoomFilters v0.0.0-20251001182300-5b3723cc64ae
3131
github.com/vmihailenco/msgpack/v5 v5.4.1
32-
go.etcd.io/bbolt v1.4.2
32+
go.etcd.io/bbolt v1.4.3
3333
)
3434

3535
require github.com/cockroachdb/pebble v1.1.5
3636

3737
require (
3838
filippo.io/edwards25519 v1.1.0 // indirect
3939
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
40-
github.com/DataDog/zstd v1.5.6-0.20230824185856-869dae002e5e // indirect
40+
github.com/DataDog/zstd v1.5.7 // indirect
4141
github.com/Microsoft/go-winio v0.6.2 // indirect
4242
github.com/aperturerobotics/json-iterator-lite v1.0.1-0.20240713111131-be6bf89c3008 // indirect
4343
github.com/beorn7/perks v1.0.1 // indirect
@@ -59,12 +59,12 @@ require (
5959
github.com/docker/go-connections v0.4.0 // indirect
6060
github.com/docker/go-units v0.5.0 // indirect
6161
github.com/dustin/go-humanize v1.0.1 // indirect
62-
github.com/fsnotify/fsnotify v1.8.0 // indirect
62+
github.com/fsnotify/fsnotify v1.9.0 // indirect
6363
github.com/getsentry/sentry-go v0.27.0 // indirect
64-
github.com/go-logr/logr v1.4.2 // indirect
64+
github.com/go-logr/logr v1.4.3 // indirect
6565
github.com/go-logr/stdr v1.2.2 // indirect
6666
github.com/go-sourcemap/sourcemap v2.1.3+incompatible // indirect
67-
github.com/go-viper/mapstructure/v2 v2.2.1 // indirect
67+
github.com/go-viper/mapstructure/v2 v2.4.0 // indirect
6868
github.com/gofrs/uuid v4.4.0+incompatible // indirect
6969
github.com/gogo/protobuf v1.3.2 // indirect
7070
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
@@ -79,19 +79,20 @@ require (
7979
github.com/kr/pretty v0.3.1 // indirect
8080
github.com/kr/text v0.2.0 // indirect
8181
github.com/magiconair/properties v1.8.7 // indirect
82-
github.com/mattn/go-runewidth v0.0.3 // indirect
82+
github.com/mattn/go-runewidth v0.0.9 // indirect
8383
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
8484
github.com/mitchellh/mapstructure v1.5.0 // indirect
8585
github.com/moby/docker-image-spec v1.3.1 // indirect
86+
github.com/moby/go-archive v0.1.0 // indirect
8687
github.com/moby/patternmatcher v0.6.0 // indirect
87-
github.com/moby/sys/sequential v0.5.0 // indirect
88-
github.com/moby/sys/user v0.1.0 // indirect
88+
github.com/moby/sys/sequential v0.6.0 // indirect
89+
github.com/moby/sys/user v0.4.0 // indirect
8990
github.com/moby/sys/userns v0.1.0 // indirect
9091
github.com/moby/term v0.0.0-20210619224110-3f7ff695adc6 // indirect
9192
github.com/morikuni/aec v1.0.0 // indirect
9293
github.com/opencontainers/go-digest v1.0.0 // indirect
9394
github.com/opencontainers/image-spec v1.1.0-rc2.0.20221005185240-3a7f492d3f1b // indirect
94-
github.com/pelletier/go-toml/v2 v2.2.3 // indirect
95+
github.com/pelletier/go-toml/v2 v2.2.4 // indirect
9596
github.com/pkg/errors v0.9.1 // indirect
9697
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
9798
github.com/pquerna/cachecontrol v0.0.0-20180517163645-1555304b9b35 // indirect
@@ -101,31 +102,32 @@ require (
101102
github.com/prometheus/procfs v0.10.1 // indirect
102103
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
103104
github.com/rogpeppe/go-internal v1.13.1 // indirect
104-
github.com/sagikazarmark/locafero v0.7.0 // indirect
105+
github.com/sagikazarmark/locafero v0.11.0 // indirect
105106
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
106107
github.com/shopspring/decimal v1.3.1 // indirect
107108
github.com/sirupsen/logrus v1.9.3 // indirect
108-
github.com/sourcegraph/conc v0.3.0 // indirect
109-
github.com/spf13/afero v1.12.0 // indirect
110-
github.com/spf13/cast v1.7.1 // indirect
111-
github.com/spf13/pflag v1.0.6 // indirect
109+
github.com/sourcegraph/conc v0.3.1-0.20240121214520-5f936abd7ae8 // indirect
110+
github.com/spf13/afero v1.15.0 // indirect
111+
github.com/spf13/cast v1.10.0 // indirect
112+
github.com/spf13/pflag v1.0.10 // indirect
112113
github.com/subosito/gotenv v1.6.0 // indirect
113114
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
114115
go.opencensus.io v0.24.0 // indirect
115116
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
116-
go.opentelemetry.io/otel v1.35.0 // indirect
117-
go.opentelemetry.io/otel/metric v1.35.0 // indirect
118-
go.opentelemetry.io/otel/trace v1.35.0 // indirect
117+
go.opentelemetry.io/otel v1.37.0 // indirect
118+
go.opentelemetry.io/otel/metric v1.37.0 // indirect
119+
go.opentelemetry.io/otel/trace v1.37.0 // indirect
119120
go.uber.org/atomic v1.9.0 // indirect
120121
go.uber.org/multierr v1.9.0 // indirect
121-
golang.org/x/crypto v0.36.0 // indirect
122+
go.yaml.in/yaml/v3 v3.0.4 // indirect
123+
golang.org/x/crypto v0.40.0 // indirect
122124
golang.org/x/exp v0.0.0-20240416160154-fe59bbe5cc7f // indirect
123-
golang.org/x/mod v0.18.0 // indirect
124-
golang.org/x/net v0.38.0 // indirect
125-
golang.org/x/sync v0.12.0 // indirect
126-
golang.org/x/sys v0.31.0 // indirect
127-
golang.org/x/text v0.23.0 // indirect
128-
golang.org/x/tools v0.22.0 // indirect
125+
golang.org/x/mod v0.26.0 // indirect
126+
golang.org/x/net v0.42.0 // indirect
127+
golang.org/x/sync v0.16.0 // indirect
128+
golang.org/x/sys v0.35.0 // indirect
129+
golang.org/x/text v0.28.0 // indirect
130+
golang.org/x/tools v0.35.0 // indirect
129131
google.golang.org/protobuf v1.36.6 // indirect
130132
gopkg.in/ini.v1 v1.67.0 // indirect
131133
gopkg.in/yaml.v3 v3.0.1 // indirect

0 commit comments

Comments
 (0)