Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '1.26.2'
go-version: '1.26.3'

- name: Install dependencies
run: |
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '1.26.2'
go-version: '1.26.3'

- name: Install dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion agent/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/cortexapps/axon

go 1.26.2
go 1.26.3

require (
github.com/google/uuid v1.6.0
Expand Down
6 changes: 3 additions & 3 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM debian:stable-slim AS builder

RUN apt-get update && apt-get upgrade -y && apt-get install -y protobuf-compiler git wget build-essential

ENV GOLANG_VERSION=1.26.2
ENV GOLANG_VERSION=1.26.3
RUN wget -q "https://dl.google.com/go/go${GOLANG_VERSION}.linux-$(dpkg --print-architecture).tar.gz" -O /tmp/go.tar.gz \
&& tar -C /usr/local -xzf /tmp/go.tar.gz \
&& rm /tmp/go.tar.gz
Expand Down Expand Up @@ -33,7 +33,7 @@ RUN apt-get update && apt-get upgrade -y && apt-get install -y \
# Install NodeJS and Snyk Broker
ENV NODE_VERSION=20

ARG SNYK_BROKER_VERSION=v1.0.11-axon
ARG SNYK_BROKER_VERSION=v1.0.13-axon
RUN wget -q -O - https://deb.nodesource.com/setup_${NODE_VERSION}.x | bash - && apt-get install -y nodejs
RUN npm install --global npm@latest typescript@4.9.3
RUN git clone https://github.com/cortexapps/snyk-broker.git /tmp/snyk-broker && \
Expand All @@ -50,7 +50,7 @@ RUN git clone https://github.com/cortexapps/snyk-broker.git /tmp/snyk-broker &&
ENV PATH="/usr/local/lib/node_modules/.bin:${PATH}"

# Install Go (needed by scaffold apps that build on top of this image)
ENV GOLANG_VERSION=1.26.2
ENV GOLANG_VERSION=1.26.3
RUN wget -q "https://dl.google.com/go/go${GOLANG_VERSION}.linux-$(dpkg --print-architecture).tar.gz" -O /tmp/go.tar.gz \
&& tar -C /usr/local -xzf /tmp/go.tar.gz \
&& rm /tmp/go.tar.gz
Expand Down
2 changes: 1 addition & 1 deletion examples/go/axon-ev-sync/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/cortexapps/axon_apps/axon-ev-sync

go 1.26.2
go 1.26.3

require (
github.com/cortexapps/axon-go v0.0.0
Expand Down
2 changes: 1 addition & 1 deletion scaffold/go/axon_client/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/cortexapps/axon-go

go 1.26.2
go 1.26.3

require (
github.com/google/uuid v1.6.0
Expand Down
2 changes: 1 addition & 1 deletion scaffold/go/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/cortexapps/axon_apps/{{.ProjectName}}

go 1.26.2
go 1.26.3

require (
github.com/google/uuid v1.6.0
Expand Down
2 changes: 1 addition & 1 deletion sdks/go/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/cortexapps/axon-go

go 1.26.2
go 1.26.3

require (
github.com/google/uuid v1.6.0
Expand Down
Loading