Skip to content

Commit fc6eb55

Browse files
authored
Upgrade to Go 1.19 (#9)
1 parent 29131a4 commit fc6eb55

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.16 AS builder
1+
FROM golang:1.19 AS builder
22

33
ARG VERSION=dev
44
ARG USER=outbox

go.mod

+11-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/kamal-github/outbox
22

3-
go 1.16
3+
go 1.19
44

55
require (
66
github.com/DATA-DOG/go-sqlmock v1.5.0
@@ -14,3 +14,13 @@ require (
1414
github.com/stretchr/testify v1.7.0
1515
go.uber.org/zap v1.16.0
1616
)
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

Comments
 (0)