Skip to content

Commit

Permalink
chore: Bump Go to 1.19 (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
Antoine Gelloz authored Feb 21, 2023
1 parent ca3bc98 commit 2979644
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=$BUILDPLATFORM golang:1.18 AS builder
FROM --platform=$BUILDPLATFORM golang:1.19 AS builder
RUN apt-get update && \
apt-get install -y gcc-aarch64-linux-gnu gcc-x86-64-linux-gnu && \
ln -s /usr/bin/aarch64-linux-gnu-gcc /usr/bin/arm64-linux-gnu-gcc && \
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.override.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
ledger:
image: golang:1.18-alpine
image: golang:1.19-alpine
entrypoint: go run main.go server start
volumes:
- .:/src
Expand Down
2 changes: 1 addition & 1 deletion examples/basic-auth/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ services:
service: ledger
depends_on:
- postgres
image: golang:1.18-alpine
image: golang:1.19-alpine
entrypoint: go run main.go server start
volumes:
- ../..:/src
Expand Down
2 changes: 1 addition & 1 deletion examples/jaeger-exporter/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ services:
depends_on:
- postgres
- jaeger
image: golang:1.18-alpine
image: golang:1.19-alpine
entrypoint: go run main.go server start
volumes:
- ../..:/src
Expand Down
2 changes: 1 addition & 1 deletion examples/multi-node/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ services:
depends_on:
- postgres
- redis
image: golang:1.18-alpine
image: golang:1.19-alpine
entrypoint: go run main.go server start
volumes:
- ../..:/src
Expand Down
2 changes: 1 addition & 1 deletion examples/otlp-exporter/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ services:
depends_on:
- postgres
- otlp-exporter
image: golang:1.18-alpine
image: golang:1.19-alpine
entrypoint: go run main.go server start
volumes:
- ../..:/src
Expand Down
2 changes: 1 addition & 1 deletion examples/publisher-http/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ services:
depends_on:
- postgres
- listener
image: golang:1.18-alpine
image: golang:1.19-alpine
entrypoint: go run main.go server start
volumes:
- ../..:/src
Expand Down
2 changes: 1 addition & 1 deletion examples/publisher-kafka/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ services:
depends_on:
- postgres
- kafka
image: golang:1.18-alpine
image: golang:1.19-alpine
entrypoint: go run main.go server start
volumes:
- ../..:/src
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/numary/ledger

go 1.18
go 1.19

require (
github.com/DmitriyVTitov/size v1.5.0
Expand Down

0 comments on commit 2979644

Please sign in to comment.