Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update all #244

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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,6 +1,6 @@
# generated-from:a1ae955dd09d1cf3d9d820d45ef6354f287ba25a14bff6f3643b446d7825f2b8 DO NOT REMOVE, DO UPDATE

FROM golang:1.22 as builder
FROM golang:1.24 as builder
WORKDIR /src
ARG VERSION

Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ services:
- /var/lib/mysql

ftp:
image: moov/fsftp:v0.2.1
image: moov/fsftp:v0.2.2
ports:
- "2121:2121"
- "30000-30009:30000-30009"
Expand Down Expand Up @@ -75,7 +75,7 @@ services:
- --default-log-level=info

topics:
image: docker.redpanda.com/vectorized/redpanda:v22.3.21
image: docker.redpanda.com/vectorized/redpanda:v22.3.25
depends_on:
kafka1:
condition: service_healthy
Expand Down
2 changes: 1 addition & 1 deletion docs/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ platforms :mingw, :x64_mingw, :mswin, :jruby do
end

# Performance-booster for watching directories on Windows
gem "wdm", "~> 0.1.1", :platforms => [:mingw, :x64_mingw, :mswin]
gem "wdm", "~> 0.2.0", :platforms => [:mingw, :x64_mingw, :mswin]
16 changes: 8 additions & 8 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@ module github.com/moov-io/achgateway
go 1.22.0

require (
cloud.google.com/go/spanner v1.68.0
cloud.google.com/go/spanner v1.75.0
github.com/PagerDuty/go-pagerduty v1.8.0
github.com/ProtonMail/go-crypto v1.1.5
github.com/Shopify/sarama v1.38.1
github.com/Shopify/sarama v1.45.0
github.com/go-kit/kit v0.13.0
github.com/google/uuid v1.6.0
github.com/gorilla/mux v1.8.1
github.com/hashicorp/go-retryablehttp v0.7.7
github.com/igrmk/treemap/v2 v2.0.1
github.com/jlaffaye/ftp v0.2.0
github.com/moov-io/ach v1.45.3
github.com/moov-io/ach v1.45.5
github.com/moov-io/base v0.53.0
github.com/moov-io/cryptfs v0.8.0
github.com/moov-io/go-ftp v0.4.0
Expand All @@ -27,18 +27,18 @@ require (
github.com/rickar/cal/v2 v2.1.21
github.com/robfig/cron/v3 v3.0.1
github.com/sethvargo/go-retry v0.3.0
github.com/slack-go/slack v0.15.0
github.com/slack-go/slack v0.16.0
github.com/spf13/viper v1.19.0
github.com/stretchr/testify v1.10.0
go.opentelemetry.io/otel v1.29.0
go.opentelemetry.io/otel/trace v1.29.0
gocloud.dev v0.37.0
gocloud.dev/pubsub/kafkapubsub v0.34.0
goftp.io/server v0.4.1
golang.org/x/crypto v0.32.0
golang.org/x/sync v0.10.0
golang.org/x/text v0.21.0
google.golang.org/api v0.199.0
golang.org/x/crypto v0.33.0
golang.org/x/sync v0.11.0
golang.org/x/text v0.22.0
google.golang.org/api v0.221.0
)

require (
Expand Down
Loading