File tree Expand file tree Collapse file tree 13 files changed +21
-21
lines changed
Expand file tree Collapse file tree 13 files changed +21
-21
lines changed Original file line number Diff line number Diff line change 2323 - name : Set up Go
2424 uses : actions/setup-go@v3
2525 with :
26- go-version : ' 1.24.8 '
26+ go-version : ' 1.25.5 '
2727
2828 - name : Install dependencies
2929 run : |
5050 - name : Set up Go
5151 uses : actions/setup-go@v3
5252 with :
53- go-version : ' 1.24.8 '
53+ go-version : ' 1.25.5 '
5454
5555 - name : Install dependencies
5656 run : |
Original file line number Diff line number Diff line change 4949
5050mockgen :
5151 mkdir -p test/mocks
52- @if ! command -v $(GOBIN ) /mockgen > /dev/null; then echo " Installing mockgen..." ; go install go.uber.org/mock/mockgen@v0.5 .0; fi
52+ @if ! command -v $(GOBIN ) /mockgen > /dev/null; then echo " Installing mockgen..." ; go install go.uber.org/mock/mockgen@v0.6 .0; fi
5353.PHONY : mockgen
5454
5555server/http/http_server_mock.go : server/http/http_server.go
Original file line number Diff line number Diff line change 11module github.com/cortexapps/axon
22
3- go 1.24.8
3+ go 1.25.5
44
55require (
66 github.com/google/uuid v1.6.0
@@ -10,7 +10,7 @@ require (
1010 github.com/spf13/cobra v1.8.1
1111 github.com/stretchr/testify v1.10.0
1212 go.uber.org/fx v1.23.0
13- go.uber.org/mock v0.5 .0
13+ go.uber.org/mock v0.6 .0
1414 go.uber.org/zap v1.27.0
1515 google.golang.org/grpc v1.68.0
1616 google.golang.org/protobuf v1.36.6
Original file line number Diff line number Diff line change @@ -52,8 +52,8 @@ go.uber.org/fx v1.23.0 h1:lIr/gYWQGfTwGcSXWXu4vP5Ws6iqnNEIY+F/aFzCKTg=
5252go.uber.org/fx v1.23.0 /go.mod h1:o/D9n+2mLP6v1EG+qsdT1O8wKopYAsqZasju97SDFCU =
5353go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto =
5454go.uber.org/goleak v1.3.0 /go.mod h1:CoHD4mav9JJNrW/WLlf7HGZPjdw8EucARQHekz1X6bE =
55- go.uber.org/mock v0.5 .0 h1:KAMbZvZPyBPWgD14IrIQ38QCyjwpvVVV6K/bHl1IwQU =
56- go.uber.org/mock v0.5 .0 /go.mod h1:ge71pBPLYDk7QIi1LupWxdAykm7KIEFchiOqd6z7qMM =
55+ go.uber.org/mock v0.6 .0 h1:hyF9dfmbgIX5EfOdasqLsWD6xqpNZlXblLB/Dbnwv3Y =
56+ go.uber.org/mock v0.6 .0 /go.mod h1:KiVJ4BqZJaMj4svdfmHM0AUx4NJYO8ZNpPnZn1Z+BBU =
5757go.uber.org/multierr v1.11.0 h1:blXXJkSxSSfBVBlC76pxqeO+LN3aDfLQo+309xJstO0 =
5858go.uber.org/multierr v1.11.0 /go.mod h1:20+QtiLqy0Nd6FdQB9TLXag12DsQkrbs3htMFfDN80Y =
5959go.uber.org/zap v1.27.0 h1:aJMhYGrd5QSmlpLMr2MftRKl7t8J8PTZPA732ud/XR8 =
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ services:
6464 stop_grace_period : 1s # SIGKILL after 1s
6565
6666 cortex-fake :
67- image : golang:1.24 -alpine
67+ image : golang:1.25 -alpine
6868 volumes :
6969 - .:/src
7070 environment :
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ ARG SNYK_BROKER_VERSION=4.203.4
1010RUN wget -q -O - https://deb.nodesource.com/setup_${NODE_VERSION}.x | bash - && apt install -y nodejs
1111RUN npm install -g snyk-broker@${SNYK_BROKER_VERSION}
1212
13- ENV GOLANG_VERSION=1.24.8
13+ ENV GOLANG_VERSION=1.25.5
1414# Install Go, this script will work for ARM or AMD64
1515RUN wget -q -O /tmp/goinstall.sh https://raw.githubusercontent.com/canha/golang-tools-install-script/master/goinstall.sh && chmod +x /tmp/goinstall.sh && /tmp/goinstall.sh --version ${GOLANG_VERSION}
1616
Original file line number Diff line number Diff line change 11module github.com/cortexapps/axon_apps/axon-ev-sync
22
3- go 1.24.8
3+ go 1.25.5
44
55require (
66 github.com/cortexapps/axon-go v0.0.0
Original file line number Diff line number Diff line change @@ -12,8 +12,8 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT
1212github.com/stretchr/testify v1.9.0 /go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY =
1313go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto =
1414go.uber.org/goleak v1.3.0 /go.mod h1:CoHD4mav9JJNrW/WLlf7HGZPjdw8EucARQHekz1X6bE =
15- go.uber.org/mock v0.5 .0 h1:KAMbZvZPyBPWgD14IrIQ38QCyjwpvVVV6K/bHl1IwQU =
16- go.uber.org/mock v0.5 .0 /go.mod h1:ge71pBPLYDk7QIi1LupWxdAykm7KIEFchiOqd6z7qMM =
15+ go.uber.org/mock v0.6 .0 h1:hyF9dfmbgIX5EfOdasqLsWD6xqpNZlXblLB/Dbnwv3Y =
16+ go.uber.org/mock v0.6 .0 /go.mod h1:KiVJ4BqZJaMj4svdfmHM0AUx4NJYO8ZNpPnZn1Z+BBU =
1717go.uber.org/multierr v1.10.0 h1:S0h4aNzvfcFsC3dRF1jLoaov7oRaKqRGC/pUEJ2yvPQ =
1818go.uber.org/multierr v1.10.0 /go.mod h1:20+QtiLqy0Nd6FdQB9TLXag12DsQkrbs3htMFfDN80Y =
1919go.uber.org/zap v1.27.0 h1:aJMhYGrd5QSmlpLMr2MftRKl7t8J8PTZPA732ud/XR8 =
Original file line number Diff line number Diff line change 11module github.com/cortexapps/axon-go
22
3- go 1.24.8
3+ go 1.25.5
44
55require (
66 github.com/google/uuid v1.6.0
77 github.com/stretchr/testify v1.9.0
8- go.uber.org/mock v0.5 .0
8+ go.uber.org/mock v0.6 .0
99 go.uber.org/zap v1.27.0
1010 google.golang.org/grpc v1.68.0
1111 google.golang.org/protobuf v1.36.0
Original file line number Diff line number Diff line change @@ -12,8 +12,8 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT
1212github.com/stretchr/testify v1.9.0 /go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY =
1313go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto =
1414go.uber.org/goleak v1.3.0 /go.mod h1:CoHD4mav9JJNrW/WLlf7HGZPjdw8EucARQHekz1X6bE =
15- go.uber.org/mock v0.5 .0 h1:KAMbZvZPyBPWgD14IrIQ38QCyjwpvVVV6K/bHl1IwQU =
16- go.uber.org/mock v0.5 .0 /go.mod h1:ge71pBPLYDk7QIi1LupWxdAykm7KIEFchiOqd6z7qMM =
15+ go.uber.org/mock v0.6 .0 h1:hyF9dfmbgIX5EfOdasqLsWD6xqpNZlXblLB/Dbnwv3Y =
16+ go.uber.org/mock v0.6 .0 /go.mod h1:KiVJ4BqZJaMj4svdfmHM0AUx4NJYO8ZNpPnZn1Z+BBU =
1717go.uber.org/multierr v1.10.0 h1:S0h4aNzvfcFsC3dRF1jLoaov7oRaKqRGC/pUEJ2yvPQ =
1818go.uber.org/multierr v1.10.0 /go.mod h1:20+QtiLqy0Nd6FdQB9TLXag12DsQkrbs3htMFfDN80Y =
1919go.uber.org/zap v1.27.0 h1:aJMhYGrd5QSmlpLMr2MftRKl7t8J8PTZPA732ud/XR8 =
You can’t perform that action at this time.
0 commit comments