We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29131a4 commit fc6eb55Copy full SHA for fc6eb55
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM golang:1.16 AS builder
+FROM golang:1.19 AS builder
2
3
ARG VERSION=dev
4
ARG USER=outbox
go.mod
@@ -1,6 +1,6 @@
module github.com/kamal-github/outbox
-go 1.16
+go 1.19
5
require (
6
github.com/DATA-DOG/go-sqlmock v1.5.0
@@ -14,3 +14,13 @@ require (
14
github.com/stretchr/testify v1.7.0
15
go.uber.org/zap v1.16.0
16
)
17
+
18
+require (
19
+ github.com/davecgh/go-spew v1.1.1 // indirect
20
+ github.com/google/uuid v1.2.0 // indirect
21
+ github.com/jmespath/go-jmespath v0.4.0 // indirect
22
+ github.com/pmezard/go-difflib v1.0.0 // indirect
23
+ go.uber.org/atomic v1.6.0 // indirect
24
+ go.uber.org/multierr v1.5.0 // indirect
25
+ gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
26
+)
0 commit comments