Skip to content

Commit daabfd9

Browse files
Merge pull request #131 from multiversx/update-dependencies-07-02
Barnard: update dependencies and Go version
2 parents 41d5bd6 + a85a56e commit daabfd9

7 files changed

Lines changed: 129 additions & 116 deletions

File tree

.github/workflows/code-coverage.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ jobs:
1212
runs-on: ${{ matrix.runs-on }}
1313
name: Build
1414
steps:
15-
- name: Set up Go 1.18
16-
uses: actions/setup-go@v3
15+
- name: Set up Go 1.23
16+
uses: actions/setup-go@v5
1717
with:
18-
go-version: 1.18
18+
go-version: 1.23.6
1919
id: go
2020

2121
- name: Check out code into the Go module directory
22-
uses: actions/checkout@v3
22+
uses: actions/checkout@v4
2323

2424
- name: Get dependencies
2525
run: |

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
steps:
2323
- name: Checkout repository
24-
uses: actions/checkout@v2
24+
uses: actions/checkout@v4
2525
with:
2626
# We must fetch at least the immediate parents so that if this is
2727
# a pull request then we can checkout the head.

.github/workflows/golangci-lint.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,14 @@ jobs:
1111
name: golangci linter
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/setup-go@v3
14+
- uses: actions/setup-go@v5
1515
with:
16-
go-version: 1.18
17-
- uses: actions/checkout@v3
16+
go-version: 1.23.6
17+
- uses: actions/checkout@v4
1818
- name: golangci-lint
19-
uses: golangci/golangci-lint-action@v3
19+
uses: golangci/golangci-lint-action@v6
2020
with:
21-
# Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version.
22-
version: v1.45.2
21+
version: v1.64.5
2322

2423
# Optional: golangci-lint command line arguments.
2524
args: --timeout 10m0s --max-issues-per-linter 0 --max-same-issues 0 --print-issued-lines

.github/workflows/pr-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Set up Go 1.x
13-
uses: actions/setup-go@v2
13+
uses: actions/setup-go@v5
1414
with:
15-
go-version: 1.18
15+
go-version: 1.23.6
1616
id: go
1717

1818
- name: Check out code into the Go module directory
19-
uses: actions/checkout@v2
19+
uses: actions/checkout@v4
2020

2121
- name: Get dependencies
2222
run: |

go.mod

Lines changed: 33 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,61 +1,63 @@
11
module github.com/multiversx/mx-chain-rosetta
22

3-
go 1.18
3+
go 1.23.6
44

55
require (
66
github.com/coinbase/rosetta-sdk-go v0.8.3
77
github.com/coinbase/rosetta-sdk-go/types v1.0.0
8-
github.com/gin-gonic/gin v1.9.1
9-
github.com/multiversx/mx-chain-core-go v1.2.24
10-
github.com/multiversx/mx-chain-go v1.8.8
11-
github.com/multiversx/mx-chain-logger-go v1.0.15
12-
github.com/multiversx/mx-chain-proxy-go v1.1.57
13-
github.com/multiversx/mx-chain-storage-go v1.0.19
14-
github.com/stretchr/testify v1.8.4
15-
github.com/urfave/cli v1.22.10
8+
github.com/gin-gonic/gin v1.10.0
9+
github.com/multiversx/mx-chain-core-go v1.4.0
10+
github.com/multiversx/mx-chain-go v1.10.1
11+
github.com/multiversx/mx-chain-logger-go v1.1.0
12+
github.com/multiversx/mx-chain-proxy-go v1.3.0
13+
github.com/multiversx/mx-chain-storage-go v1.1.0
14+
github.com/stretchr/testify v1.10.0
15+
github.com/urfave/cli v1.22.16
1616
)
1717

1818
require (
1919
github.com/btcsuite/btcd/btcutil v1.1.3 // indirect
20-
github.com/bytedance/sonic v1.9.1 // indirect
21-
github.com/chenzhuoyu/base64x v0.0.0-20221115062448-fe3a3abad311 // indirect
22-
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
20+
github.com/bytedance/sonic v1.11.6 // indirect
21+
github.com/bytedance/sonic/loader v0.1.1 // indirect
22+
github.com/cloudwego/base64x v0.1.4 // indirect
23+
github.com/cloudwego/iasm v0.2.0 // indirect
24+
github.com/cpuguy83/go-md2man/v2 v2.0.5 // indirect
2325
github.com/davecgh/go-spew v1.1.1 // indirect
2426
github.com/denisbrodbeck/machineid v1.0.1 // indirect
25-
github.com/gabriel-vasile/mimetype v1.4.2 // indirect
27+
github.com/gabriel-vasile/mimetype v1.4.6 // indirect
2628
github.com/gin-contrib/sse v0.1.0 // indirect
2729
github.com/go-playground/locales v0.14.1 // indirect
2830
github.com/go-playground/universal-translator v0.18.1 // indirect
29-
github.com/go-playground/validator/v10 v10.14.0 // indirect
31+
github.com/go-playground/validator/v10 v10.20.0 // indirect
3032
github.com/goccy/go-json v0.10.2 // indirect
3133
github.com/gogo/protobuf v1.3.2 // indirect
3234
github.com/golang/protobuf v1.5.3 // indirect
33-
github.com/gorilla/mux v1.8.0 // indirect
34-
github.com/hashicorp/golang-lru v0.6.0 // indirect
35+
github.com/gorilla/mux v1.8.1 // indirect
36+
github.com/hashicorp/golang-lru v1.0.2 // indirect
3537
github.com/json-iterator/go v1.1.12 // indirect
36-
github.com/klauspost/cpuid/v2 v2.2.5 // indirect
37-
github.com/leodido/go-urn v1.2.4 // indirect
38-
github.com/mattn/go-isatty v0.0.19 // indirect
38+
github.com/klauspost/cpuid/v2 v2.2.9 // indirect
39+
github.com/leodido/go-urn v1.4.0 // indirect
40+
github.com/mattn/go-isatty v0.0.20 // indirect
3941
github.com/mitchellh/mapstructure v1.5.0 // indirect
4042
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
4143
github.com/modern-go/reflect2 v1.0.2 // indirect
4244
github.com/mr-tron/base58 v1.2.0 // indirect
43-
github.com/multiversx/mx-chain-communication-go v1.1.1 // indirect
44-
github.com/multiversx/mx-chain-crypto-go v1.2.12 // indirect
45-
github.com/multiversx/mx-chain-es-indexer-go v1.7.13 // indirect
46-
github.com/multiversx/mx-chain-vm-common-go v1.5.16 // indirect
45+
github.com/multiversx/mx-chain-communication-go v1.3.0 // indirect
46+
github.com/multiversx/mx-chain-crypto-go v1.3.0 // indirect
47+
github.com/multiversx/mx-chain-es-indexer-go v1.9.1 // indirect
48+
github.com/multiversx/mx-chain-vm-common-go v1.6.0 // indirect
4749
github.com/pelletier/go-toml v1.9.3 // indirect
48-
github.com/pelletier/go-toml/v2 v2.0.8 // indirect
50+
github.com/pelletier/go-toml/v2 v2.2.2 // indirect
4951
github.com/pkg/errors v0.9.1 // indirect
5052
github.com/pmezard/go-difflib v1.0.0 // indirect
5153
github.com/russross/blackfriday/v2 v2.1.0 // indirect
5254
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
53-
github.com/ugorji/go/codec v1.2.11 // indirect
54-
golang.org/x/arch v0.3.0 // indirect
55-
golang.org/x/crypto v0.10.0 // indirect
56-
golang.org/x/net v0.11.0 // indirect
57-
golang.org/x/sys v0.10.0 // indirect
58-
golang.org/x/text v0.10.0 // indirect
59-
google.golang.org/protobuf v1.30.0 // indirect
55+
github.com/ugorji/go/codec v1.2.12 // indirect
56+
golang.org/x/arch v0.8.0 // indirect
57+
golang.org/x/crypto v0.32.0 // indirect
58+
golang.org/x/net v0.34.0 // indirect
59+
golang.org/x/sys v0.30.0 // indirect
60+
golang.org/x/text v0.21.0 // indirect
61+
google.golang.org/protobuf v1.36.4 // indirect
6062
gopkg.in/yaml.v3 v3.0.1 // indirect
6163
)

0 commit comments

Comments
 (0)