Skip to content

Commit 3d90f20

Browse files
fix(deps): update all dependencies
1 parent 109042a commit 3d90f20

File tree

5 files changed

+151
-47
lines changed

5 files changed

+151
-47
lines changed

.github/workflows/codeql-analysis.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -31,20 +31,20 @@ jobs:
3131

3232
steps:
3333
- name: Checkout repository
34-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
34+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3535

3636
- name: Setup Go ${{ matrix.go }}
37-
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
37+
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0
3838
with:
3939
go-version: ${{ matrix.go }}
4040

4141
- name: Initialize CodeQL
42-
uses: github/codeql-action/init@b611370bb5703a7efb587f9d136a52ea24c5c38c # v3.25.11
42+
uses: github/codeql-action/init@5f8171a638ada777af81d42b55959a643bb29017 # v3.28.12
4343
with:
4444
languages: ${{ matrix.language }}
4545

4646
- name: Autobuild
47-
uses: github/codeql-action/autobuild@b611370bb5703a7efb587f9d136a52ea24c5c38c # v3.25.11
47+
uses: github/codeql-action/autobuild@5f8171a638ada777af81d42b55959a643bb29017 # v3.28.12
4848

4949
- name: Perform CodeQL Analysis
50-
uses: github/codeql-action/analyze@b611370bb5703a7efb587f9d136a52ea24c5c38c # v3.25.11
50+
uses: github/codeql-action/analyze@5f8171a638ada777af81d42b55959a643bb29017 # v3.28.12

.github/workflows/dependency-review.yml

+2-2
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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
18+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1919
- name: 'Dependency Review'
20-
uses: actions/dependency-review-action@72eb03d02c7872a771aacd928f3123ac62ad6d3a # v4.3.3
20+
uses: actions/dependency-review-action@3b139cfc5fae8b618d3eae3675e383bb1769c019 # v4.5.0

.github/workflows/tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ jobs:
1919
go: ['1.22']
2020
timeout-minutes: 10
2121
steps:
22-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
22+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2323
- name: Setup Go ${{ matrix.go }}
24-
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
24+
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0
2525
with:
2626
go-version: ${{ matrix.go }}
2727
- name: Test Go

go.mod

+51-38
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,47 @@
11
module github.com/aperturerobotics/cayley
22

3-
go 1.22
3+
go 1.24
4+
5+
toolchain go1.24.1
46

57
require (
6-
github.com/aperturerobotics/common v0.16.12
7-
github.com/aperturerobotics/protobuf-go-lite v0.6.5
8+
github.com/aperturerobotics/common v0.21.2
9+
github.com/aperturerobotics/protobuf-go-lite v0.8.1
810
github.com/badgerodon/peg v0.0.0-20130729175151-9e5f7f4d07ca
9-
github.com/cockroachdb/pebble v1.1.1
11+
github.com/cockroachdb/pebble/v2 v2.0.3
1012
github.com/cznic/mathutil v0.0.0-20181122101859-297441e03548
1113
github.com/dennwc/graphql v0.4.19-0.20180603144102-12cfed44bc5d
12-
github.com/dgraph-io/badger/v4 v4.2.0
13-
github.com/docker/docker v26.1.1+incompatible // indirect
14-
github.com/dop251/goja v0.0.0-20240627195025-eb1f15ee67d2
15-
github.com/fsouza/go-dockerclient v1.11.0
16-
github.com/go-sql-driver/mysql v1.8.1
17-
github.com/golang/glog v1.2.1
14+
github.com/dgraph-io/badger/v4 v4.6.0
15+
github.com/docker/docker v27.5.1+incompatible // indirect
16+
github.com/dop251/goja v0.0.0-20250309171923-bcd7cc6bf64c
17+
github.com/fsouza/go-dockerclient v1.12.1
18+
github.com/go-sql-driver/mysql v1.9.1
19+
github.com/golang/glog v1.2.4
1820
github.com/jackc/pgx v3.6.2+incompatible
1921
github.com/julienschmidt/httprouter v1.3.0
2022
github.com/lib/pq v1.10.9
2123
github.com/mattn/go-sqlite3 v2.0.3+incompatible
2224
github.com/mr-tron/base58 v1.2.0
2325
github.com/peterh/liner v1.2.2
2426
github.com/piprate/json-gold v0.5.0
25-
github.com/spf13/cobra v1.8.1
26-
github.com/spf13/viper v1.19.0
27-
github.com/stretchr/testify v1.9.0
27+
github.com/spf13/cobra v1.9.1
28+
github.com/spf13/viper v1.20.0
29+
github.com/stretchr/testify v1.10.0
2830
github.com/tylertreat/BoomFilters v0.0.0-20210315201527-1a82519a3e43
2931
github.com/vmihailenco/msgpack/v5 v5.4.1
30-
go.etcd.io/bbolt v1.3.10
32+
go.etcd.io/bbolt v1.4.0
3133
)
3234

35+
require github.com/cockroachdb/pebble v1.1.4
36+
3337
require (
3438
filippo.io/edwards25519 v1.1.0 // indirect
3539
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
36-
github.com/DataDog/zstd v1.5.0 // indirect
37-
github.com/Microsoft/go-winio v0.6.1 // indirect
38-
github.com/aperturerobotics/json-iterator-lite v1.0.0 // indirect
40+
github.com/DataDog/zstd v1.5.6-0.20230824185856-869dae002e5e // indirect
41+
github.com/Microsoft/go-winio v0.6.2 // indirect
42+
github.com/aperturerobotics/json-iterator-lite v1.0.1-0.20240713111131-be6bf89c3008 // indirect
3943
github.com/beorn7/perks v1.0.1 // indirect
40-
github.com/cespare/xxhash/v2 v2.2.0 // indirect
44+
github.com/cespare/xxhash/v2 v2.3.0 // indirect
4145
github.com/cockroachdb/apd v1.1.0 // indirect
4246
github.com/cockroachdb/errors v1.11.3 // indirect
4347
github.com/cockroachdb/fifo v0.0.0-20240606204812-0bbfbd93a7ce // indirect
@@ -49,25 +53,29 @@ require (
4953
github.com/d4l3k/messagediff v1.2.1 // indirect
5054
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
5155
github.com/dgraph-io/ristretto v0.1.1 // indirect
56+
github.com/dgraph-io/ristretto/v2 v2.1.0 // indirect
5257
github.com/dgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13 // indirect
53-
github.com/dlclark/regexp2 v1.7.0 // indirect
58+
github.com/dlclark/regexp2 v1.11.4 // indirect
5459
github.com/docker/go-connections v0.4.0 // indirect
5560
github.com/docker/go-units v0.5.0 // indirect
56-
github.com/dustin/go-humanize v1.0.0 // indirect
57-
github.com/fsnotify/fsnotify v1.7.0 // indirect
61+
github.com/dustin/go-humanize v1.0.1 // indirect
62+
github.com/fsnotify/fsnotify v1.8.0 // indirect
5863
github.com/getsentry/sentry-go v0.27.0 // indirect
64+
github.com/go-logr/logr v1.4.2 // indirect
65+
github.com/go-logr/stdr v1.2.2 // indirect
5966
github.com/go-sourcemap/sourcemap v2.1.3+incompatible // indirect
67+
github.com/go-viper/mapstructure/v2 v2.2.1 // indirect
6068
github.com/gofrs/uuid v4.4.0+incompatible // indirect
6169
github.com/gogo/protobuf v1.3.2 // indirect
6270
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
6371
github.com/golang/protobuf v1.5.4 // indirect
64-
github.com/golang/snappy v0.0.4 // indirect
65-
github.com/google/flatbuffers v1.12.1 // indirect
72+
github.com/golang/snappy v0.0.5-0.20231225225746-43d5d4cd4e0e // indirect
73+
github.com/google/flatbuffers v25.2.10+incompatible // indirect
6674
github.com/google/pprof v0.0.0-20230207041349-798e818bf904 // indirect
6775
github.com/hashicorp/hcl v1.0.0 // indirect
6876
github.com/inconshreveable/mousetrap v1.1.0 // indirect
6977
github.com/jackc/fake v0.0.0-20150926172116-812a484cc733 // indirect
70-
github.com/klauspost/compress v1.17.2 // indirect
78+
github.com/klauspost/compress v1.18.0 // indirect
7179
github.com/kr/pretty v0.3.1 // indirect
7280
github.com/kr/text v0.2.0 // indirect
7381
github.com/magiconair/properties v1.8.7 // indirect
@@ -78,11 +86,12 @@ require (
7886
github.com/moby/patternmatcher v0.6.0 // indirect
7987
github.com/moby/sys/sequential v0.5.0 // indirect
8088
github.com/moby/sys/user v0.1.0 // indirect
89+
github.com/moby/sys/userns v0.1.0 // indirect
8190
github.com/moby/term v0.0.0-20210619224110-3f7ff695adc6 // indirect
8291
github.com/morikuni/aec v1.0.0 // indirect
8392
github.com/opencontainers/go-digest v1.0.0 // indirect
8493
github.com/opencontainers/image-spec v1.1.0-rc2.0.20221005185240-3a7f492d3f1b // indirect
85-
github.com/pelletier/go-toml/v2 v2.2.2 // indirect
94+
github.com/pelletier/go-toml/v2 v2.2.3 // indirect
8695
github.com/pkg/errors v0.9.1 // indirect
8796
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
8897
github.com/pquerna/cachecontrol v0.0.0-20180517163645-1555304b9b35 // indirect
@@ -91,29 +100,33 @@ require (
91100
github.com/prometheus/common v0.32.1 // indirect
92101
github.com/prometheus/procfs v0.7.3 // indirect
93102
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
94-
github.com/rogpeppe/go-internal v1.9.0 // indirect
95-
github.com/sagikazarmark/locafero v0.4.0 // indirect
103+
github.com/rogpeppe/go-internal v1.13.1 // indirect
104+
github.com/sagikazarmark/locafero v0.7.0 // indirect
96105
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
97106
github.com/shopspring/decimal v1.3.1 // indirect
98107
github.com/sirupsen/logrus v1.9.3 // indirect
99108
github.com/sourcegraph/conc v0.3.0 // indirect
100-
github.com/spf13/afero v1.11.0 // indirect
101-
github.com/spf13/cast v1.6.0 // indirect
102-
github.com/spf13/pflag v1.0.5 // 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
103112
github.com/subosito/gotenv v1.6.0 // indirect
104113
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
105114
go.opencensus.io v0.24.0 // indirect
115+
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
116+
go.opentelemetry.io/otel v1.34.0 // indirect
117+
go.opentelemetry.io/otel/metric v1.34.0 // indirect
118+
go.opentelemetry.io/otel/trace v1.34.0 // indirect
106119
go.uber.org/atomic v1.9.0 // indirect
107120
go.uber.org/multierr v1.9.0 // indirect
108-
golang.org/x/crypto v0.22.1-0.20240503134056-ebb717d63002 // indirect
121+
golang.org/x/crypto v0.33.0 // indirect
109122
golang.org/x/exp v0.0.0-20240416160154-fe59bbe5cc7f // indirect
110-
golang.org/x/mod v0.17.0 // indirect
111-
golang.org/x/net v0.24.0 // indirect
112-
golang.org/x/sync v0.7.0 // indirect
113-
golang.org/x/sys v0.19.0 // indirect
114-
golang.org/x/text v0.14.0 // indirect
115-
golang.org/x/tools v0.20.0 // indirect
116-
google.golang.org/protobuf v1.34.1 // indirect
123+
golang.org/x/mod v0.18.0 // indirect
124+
golang.org/x/net v0.35.0 // indirect
125+
golang.org/x/sync v0.11.0 // indirect
126+
golang.org/x/sys v0.30.0 // indirect
127+
golang.org/x/text v0.22.0 // indirect
128+
golang.org/x/tools v0.22.0 // indirect
129+
google.golang.org/protobuf v1.36.5 // indirect
117130
gopkg.in/ini.v1 v1.67.0 // indirect
118131
gopkg.in/yaml.v3 v3.0.1 // indirect
119132
)

0 commit comments

Comments
 (0)