Skip to content

Commit d609f2f

Browse files
authored
Merge pull request #166 from multiversx/rc/barnard
Rc/barnard
2 parents 2462a78 + 984ca25 commit d609f2f

File tree

5 files changed

+259
-123
lines changed

5 files changed

+259
-123
lines changed

.github/workflows/golangci-lint.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ jobs:
1414
name: golangci linter
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/setup-go@v3
17+
- uses: actions/setup-go@v5
1818
with:
19-
go-version: 1.20.2
20-
- uses: actions/checkout@v3
19+
go-version: 1.23.6
20+
- uses: actions/checkout@v4
2121
- name: golangci-lint
22-
uses: golangci/golangci-lint-action@v3
22+
uses: golangci/golangci-lint-action@v6
2323
with:
2424
# Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version.
25-
version: v1.53
25+
version: v1.64.5
2626

2727
# Optional: working directory, useful for monorepos
2828
# working-directory: somedir

.github/workflows/pr-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Set up Go 1.x
15-
uses: actions/setup-go@v3
15+
uses: actions/setup-go@v5
1616
with:
17-
go-version: 1.20.2
17+
go-version: 1.23.6
1818
id: go
1919

2020
- name: Check out code
21-
uses: actions/checkout@v3
21+
uses: actions/checkout@v4
2222

2323
- name: Get dependencies
2424
run: |

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.18.10 as builder
1+
FROM golang:1.23.6 AS builder
22

33
MAINTAINER MultiversX
44

go.mod

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/multiversx/mx-multi-factor-auth-go-service
22

3-
go 1.18
3+
go 1.23
44

55
require (
66
github.com/alicebob/miniredis/v2 v2.30.3
@@ -11,21 +11,21 @@ require (
1111
github.com/gin-gonic/gin v1.10.0
1212
github.com/gogo/protobuf v1.3.2
1313
github.com/gorilla/schema v1.2.0
14-
github.com/gorilla/websocket v1.5.0
15-
github.com/multiversx/mx-chain-core-go v1.2.24
16-
github.com/multiversx/mx-chain-crypto-go v1.2.12
17-
github.com/multiversx/mx-chain-go v1.8.11
18-
github.com/multiversx/mx-chain-logger-go v1.0.15
19-
github.com/multiversx/mx-chain-storage-go v1.0.19
20-
github.com/multiversx/mx-sdk-go v1.4.8
14+
github.com/gorilla/websocket v1.5.3
15+
github.com/multiversx/mx-chain-core-go v1.4.0
16+
github.com/multiversx/mx-chain-crypto-go v1.3.0
17+
github.com/multiversx/mx-chain-go v1.10.0
18+
github.com/multiversx/mx-chain-logger-go v1.1.0
19+
github.com/multiversx/mx-chain-storage-go v1.1.0
20+
github.com/multiversx/mx-sdk-go v1.5.0
2121
github.com/multiversx/twofactor v1.0.1
22-
github.com/prometheus/client_model v0.4.0
23-
github.com/prometheus/common v0.43.0
22+
github.com/prometheus/client_model v0.6.1
23+
github.com/prometheus/common v0.62.0
2424
github.com/redis/go-redis/v9 v9.0.4
2525
github.com/stretchr/testify v1.10.0
2626
github.com/urfave/cli v1.22.16
2727
go.mongodb.org/mongo-driver v1.11.3
28-
google.golang.org/protobuf v1.36.3
28+
google.golang.org/protobuf v1.36.4
2929
)
3030

3131
require (
@@ -34,38 +34,38 @@ require (
3434
github.com/beevik/ntp v1.3.0 // indirect
3535
github.com/bytedance/sonic v1.11.6 // indirect
3636
github.com/bytedance/sonic/loader v0.1.1 // indirect
37-
github.com/cespare/xxhash/v2 v2.2.0 // indirect
37+
github.com/cespare/xxhash/v2 v2.3.0 // indirect
3838
github.com/cloudwego/base64x v0.1.4 // indirect
3939
github.com/cloudwego/iasm v0.2.0 // indirect
4040
github.com/cpuguy83/go-md2man/v2 v2.0.5 // indirect
4141
github.com/davecgh/go-spew v1.1.1 // indirect
4242
github.com/denisbrodbeck/machineid v1.0.1 // indirect
4343
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
44-
github.com/gabriel-vasile/mimetype v1.4.3 // indirect
44+
github.com/gabriel-vasile/mimetype v1.4.6 // indirect
4545
github.com/gin-contrib/sse v0.1.0 // indirect
4646
github.com/go-playground/locales v0.14.1 // indirect
4747
github.com/go-playground/universal-translator v0.18.1 // indirect
4848
github.com/go-playground/validator/v10 v10.20.0 // indirect
4949
github.com/goccy/go-json v0.10.2 // indirect
5050
github.com/golang/protobuf v1.5.3 // indirect
5151
github.com/golang/snappy v0.0.4 // indirect
52-
github.com/google/go-cmp v0.5.9 // indirect
52+
github.com/google/go-cmp v0.6.0 // indirect
5353
github.com/google/uuid v1.6.0 // indirect
54-
github.com/hashicorp/golang-lru v0.6.0 // indirect
54+
github.com/hashicorp/golang-lru v1.0.2 // indirect
5555
github.com/json-iterator/go v1.1.12 // indirect
56-
github.com/klauspost/compress v1.16.5 // indirect
57-
github.com/klauspost/cpuid/v2 v2.2.7 // indirect
56+
github.com/klauspost/compress v1.17.11 // indirect
57+
github.com/klauspost/cpuid/v2 v2.2.9 // indirect
5858
github.com/kr/pretty v0.3.1 // indirect
5959
github.com/leodido/go-urn v1.4.0 // indirect
6060
github.com/mattn/go-isatty v0.0.20 // indirect
61-
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
6261
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
6362
github.com/modern-go/reflect2 v1.0.2 // indirect
6463
github.com/montanaflynn/stats v0.0.0-20171201202039-1bf9dbcd8cbe // indirect
6564
github.com/mr-tron/base58 v1.2.0 // indirect
6665
github.com/multiversx/concurrent-map v0.1.4 // indirect
67-
github.com/multiversx/mx-chain-communication-go v1.1.1 // indirect
68-
github.com/multiversx/mx-chain-vm-common-go v1.5.16 // indirect
66+
github.com/multiversx/mx-chain-communication-go v1.3.0 // indirect
67+
github.com/multiversx/mx-chain-vm-common-go v1.6.0 // indirect
68+
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
6969
github.com/onsi/gomega v1.25.0 // indirect
7070
github.com/pborman/uuid v1.2.1 // indirect
7171
github.com/pelletier/go-toml v1.9.3 // indirect
@@ -86,10 +86,10 @@ require (
8686
github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d // indirect
8787
github.com/yuin/gopher-lua v1.1.0 // indirect
8888
golang.org/x/arch v0.8.0 // indirect
89-
golang.org/x/crypto v0.31.0 // indirect
90-
golang.org/x/net v0.33.0 // indirect
89+
golang.org/x/crypto v0.32.0 // indirect
90+
golang.org/x/net v0.34.0 // indirect
9191
golang.org/x/sync v0.10.0 // indirect
92-
golang.org/x/sys v0.28.0 // indirect
92+
golang.org/x/sys v0.30.0 // indirect
9393
golang.org/x/text v0.21.0 // indirect
9494
gopkg.in/yaml.v3 v3.0.1 // indirect
9595
)

0 commit comments

Comments
 (0)