Skip to content

Commit 2069384

Browse files
Merge pull request #125 from KyberNetwork/update_dependency
update dependency for import
2 parents 3114251 + fb529de commit 2069384

File tree

6 files changed

+59
-65
lines changed

6 files changed

+59
-65
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,13 +77,13 @@ jobs:
7777
- name: Install Go
7878
uses: actions/setup-go@v3
7979
with:
80-
go-version: "1.22.x"
80+
go-version: "1.23.x"
8181
- name: Checkout
8282
uses: actions/checkout@v3
8383
- name: golangci-lint
8484
uses: golangci/golangci-lint-action@v3
8585
with:
86-
version: v1.59.1
86+
version: v1.63.4
8787
args: --config=.golangci.yml --timeout=5m
8888
skip-pkg-cache: true
8989
skip-build-cache: true

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ jobs:
102102
- name: Setup Go
103103
uses: actions/setup-go@v3
104104
with:
105-
go-version: "1.22x"
105+
go-version: "1.23.x"
106106

107107
- name: Setup Git
108108
run: |

.golangci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ linters:
2727
- mnd
2828
- gomnd
2929
- tagalign
30-
30+
- gosec
3131
linters-settings:
3232
funlen:
3333
lines: 90

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## BUILDER
2-
FROM golang:1.22-bullseye as builder
2+
FROM golang:1.23-bullseye as builder
33

44
WORKDIR /src
55

go.mod

Lines changed: 14 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,31 @@
11
module github.com/KyberNetwork/evmlistener
22

3-
go 1.22.7
3+
go 1.23.1
44

55
require (
66
github.com/KyberNetwork/kyber-trace-go v0.1.1
77
github.com/TheZeroSlave/zapsentry v1.12.0
88
github.com/emirpasic/gods v1.18.1
9-
github.com/ethereum/go-ethereum v1.14.11
9+
github.com/ethereum/go-ethereum v1.15.5
1010
github.com/getsentry/sentry-go v0.27.0
1111
github.com/gorilla/websocket v1.5.0
1212
github.com/redis/go-redis/v9 v9.2.1
13-
github.com/stretchr/testify v1.9.0
14-
github.com/urfave/cli/v2 v2.25.7
13+
github.com/stretchr/testify v1.10.0
14+
github.com/urfave/cli/v2 v2.27.5
1515
go.opentelemetry.io/otel/metric v1.22.0
1616
go.uber.org/zap v1.26.0
17-
golang.org/x/crypto v0.29.0
18-
golang.org/x/sync v0.9.0
17+
golang.org/x/sync v0.10.0
1918
)
2019

2120
require (
2221
github.com/DataDog/zstd v1.5.2 // indirect
2322
github.com/Microsoft/go-winio v0.6.2 // indirect
24-
github.com/bits-and-blooms/bitset v1.14.3 // indirect
25-
github.com/btcsuite/btcd/btcec/v2 v2.3.4 // indirect
23+
github.com/bits-and-blooms/bitset v1.17.0 // indirect
2624
github.com/cenkalti/backoff/v4 v4.2.1 // indirect
2725
github.com/cespare/xxhash/v2 v2.3.0 // indirect
2826
github.com/consensys/bavard v0.1.22 // indirect
2927
github.com/consensys/gnark-crypto v0.14.0 // indirect
30-
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
28+
github.com/cpuguy83/go-md2man/v2 v2.0.5 // indirect
3129
github.com/crate-crypto/go-ipa v0.0.0-20240724233137-53bbb0ceb27a // indirect
3230
github.com/crate-crypto/go-kzg-4844 v1.1.0 // indirect
3331
github.com/davecgh/go-spew v1.1.1 // indirect
@@ -36,13 +34,12 @@ require (
3634
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
3735
github.com/ethereum/c-kzg-4844 v1.0.3 // indirect
3836
github.com/ethereum/go-verkle v0.2.2 // indirect
39-
github.com/gballet/go-libpcsclite v0.0.0-20191108122812-4678299bea08 // indirect
4037
github.com/go-logr/logr v1.4.1 // indirect
4138
github.com/go-logr/stdr v1.2.2 // indirect
4239
github.com/go-ole/go-ole v1.3.0 // indirect
4340
github.com/golang/protobuf v1.5.4 // indirect
4441
github.com/grpc-ecosystem/grpc-gateway/v2 v2.18.1 // indirect
45-
github.com/holiman/uint256 v1.3.1 // indirect
42+
github.com/holiman/uint256 v1.3.2 // indirect
4643
github.com/mitchellh/mapstructure v1.5.0 // indirect
4744
github.com/mmcloughlin/addchain v0.4.0 // indirect
4845
github.com/pmezard/go-difflib v1.0.0 // indirect
@@ -51,11 +48,11 @@ require (
5148
github.com/prometheus/procfs v0.9.0 // indirect
5249
github.com/russross/blackfriday/v2 v2.1.0 // indirect
5350
github.com/shirou/gopsutil v3.21.11+incompatible // indirect
54-
github.com/supranational/blst v0.3.13 // indirect
51+
github.com/supranational/blst v0.3.14 // indirect
5552
github.com/syndtr/goleveldb v1.0.1-0.20220614013038-64ee5596c38a // indirect
5653
github.com/tklauser/go-sysconf v0.3.12 // indirect
5754
github.com/tklauser/numcpus v0.6.1 // indirect
58-
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
55+
github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1 // indirect
5956
github.com/yusufpapurcu/wmi v1.2.3 // indirect
6057
go.opentelemetry.io/otel v1.22.0 // indirect
6158
go.opentelemetry.io/otel/exporters/otlp/otlpmetric v0.42.0 // indirect
@@ -69,10 +66,11 @@ require (
6966
go.opentelemetry.io/otel/trace v1.22.0 // indirect
7067
go.opentelemetry.io/proto/otlp v1.0.0 // indirect
7168
go.uber.org/multierr v1.10.0 // indirect
69+
golang.org/x/crypto v0.32.0 // indirect
7270
golang.org/x/exp v0.0.0-20231127185646-65229373498e // indirect
73-
golang.org/x/net v0.25.0 // indirect
74-
golang.org/x/sys v0.27.0 // indirect
75-
golang.org/x/text v0.20.0 // indirect
71+
golang.org/x/net v0.34.0 // indirect
72+
golang.org/x/sys v0.29.0 // indirect
73+
golang.org/x/text v0.21.0 // indirect
7674
google.golang.org/genproto/googleapis/api v0.0.0-20240123012728-ef4313101c80 // indirect
7775
google.golang.org/genproto/googleapis/rpc v0.0.0-20240123012728-ef4313101c80 // indirect
7876
google.golang.org/grpc v1.62.0 // indirect

0 commit comments

Comments
 (0)