Skip to content

Commit

Permalink
Upgrade to Go 1.19 (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
kamal-github committed Feb 2, 2023
1 parent 29131a4 commit fc6eb55
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.16 AS builder
FROM golang:1.19 AS builder

ARG VERSION=dev
ARG USER=outbox
Expand Down
12 changes: 11 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/kamal-github/outbox

go 1.16
go 1.19

require (
github.com/DATA-DOG/go-sqlmock v1.5.0
Expand All @@ -14,3 +14,13 @@ require (
github.com/stretchr/testify v1.7.0
go.uber.org/zap v1.16.0
)

require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/google/uuid v1.2.0 // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
go.uber.org/atomic v1.6.0 // indirect
go.uber.org/multierr v1.5.0 // indirect
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
)

0 comments on commit fc6eb55

Please sign in to comment.