Skip to content
This repository has been archived by the owner on Aug 26, 2022. It is now read-only.

fix(deps): update all #123

Closed
wants to merge 1 commit into from
Closed
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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.15-buster as builder
FROM golang:1.17-buster as builder
WORKDIR /go/src/github.com/moov-io/customers
RUN apt-get update && apt-get install -y make gcc g++ time
COPY . .
Expand Down
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '3'
services:
customers:
image: moov/customers:v0.5.0
image: moov/customers:v0.5.2
ports:
- "8087:8087"
- "9097:9097"
Expand All @@ -12,15 +12,15 @@ services:
- fed
- watchman
fed:
image: moov/fed:v0.5.2
image: moov/fed:v0.7.1
ports:
- "8086:8086"
- "9096:9096"
environment:
FEDACH_DATA_PATH: './data/fed/FedACHdir.txt'
FEDWIRE_DATA_PATH: './data/fed/fpddir.txt'
watchman:
image: moov/watchman:v0.16.2
image: moov/watchman:v0.21.1
ports:
- "8084:8084"
- "9094:9094"
48 changes: 16 additions & 32 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,50 +3,34 @@ module github.com/moov-io/customers
go 1.14

require (
cloud.google.com/go v0.68.0 // indirect
cloud.google.com/go/storage v1.12.0 // indirect
github.com/antihax/optional v1.0.0
github.com/aws/aws-sdk-go v1.35.7
github.com/containerd/continuity v0.0.0-20200928162600-f2cc35102c2a // indirect
github.com/go-kit/kit v0.10.0
github.com/go-sql-driver/mysql v1.5.0 // indirect
github.com/golang/snappy v0.0.2 // indirect
github.com/google/go-cmp v0.5.2
github.com/aws/aws-sdk-go v1.41.6
github.com/go-kit/kit v0.12.0
github.com/google/go-cmp v0.5.6
github.com/google/gofuzz v1.2.0
github.com/gorilla/mux v1.8.0
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-multierror v1.1.0 // indirect
github.com/hashicorp/go-retryablehttp v0.6.7 // indirect
github.com/hashicorp/go-rootcerts v1.0.2 // indirect
github.com/hashicorp/golang-lru v0.5.4
github.com/hashicorp/vault/api v1.0.4
github.com/hashicorp/vault/api v1.2.0
github.com/lopezator/migrator v0.3.0 // indirect
github.com/markbates/pkger v0.17.1
github.com/mattn/go-sqlite3 v2.0.3+incompatible
github.com/mitchellh/mapstructure v1.3.3
github.com/moov-io/ach v1.6.2
github.com/moov-io/base v0.17.0
github.com/moov-io/fed v0.5.1
github.com/moov-io/paygate v0.9.5
github.com/moov-io/watchman v0.15.1
github.com/mitchellh/mapstructure v1.4.2
github.com/moov-io/ach v1.12.2
github.com/moov-io/base v0.26.0
github.com/moov-io/fed v0.7.1
github.com/moov-io/paygate v0.10.4
github.com/moov-io/watchman v0.21.1
github.com/mxenabled/atrium-go v1.2.1-0.20200616191425-c9e0ead005ba
github.com/ory/dockertest/v3 v3.6.3
github.com/pierrec/lz4 v2.5.2+incompatible // indirect
github.com/ory/dockertest/v3 v3.8.0
github.com/pkg/errors v0.9.1
github.com/plaid/plaid-go v0.0.0-20201008151351-db360ae03a8b
github.com/prometheus/client_golang v1.9.0
github.com/prometheus/procfs v0.2.0 // indirect
github.com/sirupsen/logrus v1.7.0 // indirect
github.com/prometheus/client_golang v1.11.0
github.com/stretchr/testify v1.7.0
go.opencensus.io v0.22.5 // indirect
gocloud.dev v0.20.0
gocloud.dev/secrets/hashivault v0.20.0
golang.org/x/crypto v0.0.0-20201012173705-84dcc777aaee // indirect
golang.org/x/oauth2 v0.0.0-20200902213428-5d25da1a8d43
golang.org/x/time v0.0.0-20200630173020-3af7569d3a1e // indirect
golang.org/x/tools v0.0.0-20201013194224-c16b75f9e53c // indirect
google.golang.org/api v0.33.0 // indirect
gocloud.dev v0.24.0
gocloud.dev/secrets/hashivault v0.24.0
golang.org/x/oauth2 v0.0.0-20211005180243-6b3c2da341f1
google.golang.org/appengine v1.6.7 // indirect
gopkg.in/square/go-jose.v2 v2.5.1 // indirect
gopkg.in/yaml.v2 v2.3.0
gopkg.in/yaml.v2 v2.4.0
)
Loading