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

chore(deps): update all #37

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
4 changes: 2 additions & 2 deletions chaos-bot/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# build
FROM golang:1.15-alpine as builder
FROM golang:1.23-alpine as builder
RUN apk add --no-cache git gcc musl-dev make
ENV GO111MODULE=on
WORKDIR /go/src/ultre.me/radio-chaos/chaos-bot
Expand All @@ -10,7 +10,7 @@ COPY . ./
RUN go install

# minimalist runtime
FROM alpine:3.12
FROM alpine:3.20
COPY --from=builder /go/bin/chaos-bot /bin/
WORKDIR /dict
COPY --from=builder /dict/ .
Expand Down
78 changes: 60 additions & 18 deletions chaos-bot/go.mod
Original file line number Diff line number Diff line change
@@ -1,37 +1,79 @@
module ultre.me/radio-chaos/chaos-bot

go 1.14
go 1.22.6

toolchain go1.23.1

require (
github.com/bwmarrin/discordgo v0.22.0
github.com/bwmarrin/discordgo v0.28.1
github.com/etherlabsio/errors v0.2.3
github.com/etherlabsio/pkg v0.0.0-20191020161600-58998d98f9ce
github.com/go-chi/chi v1.5.1
github.com/go-chi/httplog v0.1.8
github.com/gohugoio/hugo v0.79.1
github.com/go-chi/chi v1.5.5
github.com/go-chi/httplog v0.3.2
github.com/gohugoio/hugo v0.134.3
github.com/graarh/golang-socketio v0.0.0-20170510162725-2c44953b9b5f
github.com/hako/durafmt v0.0.0-20200710122514-c0fb7b4da026
github.com/huandu/xstrings v1.3.1 // indirect
github.com/imdario/mergo v0.3.9 // indirect
github.com/hako/durafmt v0.0.0-20210608085754-5c1018a4e16b
github.com/jinzhu/gorm v1.9.16
github.com/karrick/godirwalk v1.15.6 // indirect
github.com/mattn/go-sqlite3 v2.0.3+incompatible // indirect
github.com/oklog/run v1.1.0
github.com/peterbourgon/ff/v3 v3.0.0
github.com/rs/cors v1.7.0
github.com/sirupsen/logrus v1.6.0 // indirect
github.com/peterbourgon/ff/v3 v3.4.0
github.com/rs/cors v1.11.1
github.com/tpyolang/tpyo-cli v1.0.0
github.com/ultreme/histoire-pour-enfant-generator v0.0.0-20200402084311-66b2cd0d2da6
golang.org/x/crypto v0.0.0-20200510223506-06a226fb4e37 // indirect
golang.org/x/sys v0.0.0-20200513112337-417ce2331b5c // indirect
gopkg.in/yaml.v2 v2.4.0
gopkg.in/yaml.v3 v3.0.0-20200506231410-2ff61e1afc86 // indirect
moul.io/godev v1.7.0
moul.io/moulsay v1.3.0
moul.io/number-to-words v0.6.0
moul.io/pipotron v1.13.0
moul.io/number-to-words v0.7.0
moul.io/pipotron v1.13.5
ultre.me/recettator v0.4.0
ultre.me/smsify v1.0.0
)

require (
github.com/Masterminds/goutils v1.1.1 // indirect
github.com/Masterminds/semver v1.5.0 // indirect
github.com/Masterminds/sprig v2.22.0+incompatible // indirect
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
github.com/eidolon/wordwrap v0.0.0-20161011182207-e0f54129b8bb // indirect
github.com/go-chi/chi/v5 v5.0.7 // indirect
github.com/go-kit/kit v0.12.0 // indirect
github.com/go-kit/log v0.2.1 // indirect
github.com/go-logfmt/logfmt v0.6.0 // indirect
github.com/go-sql-driver/mysql v1.8.1 // indirect
github.com/gobuffalo/logger v1.0.3 // indirect
github.com/gobuffalo/packd v1.0.0 // indirect
github.com/gobuffalo/packr/v2 v2.8.1 // indirect
github.com/gobwas/glob v0.2.3 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang-sql/civil v0.0.0-20220223132316-b832511892a9 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/gorilla/websocket v1.5.3 // indirect
github.com/huandu/xstrings v1.3.2 // indirect
github.com/imdario/mergo v0.3.16 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/karrick/godirwalk v1.15.8 // indirect
github.com/lib/pq v1.10.9 // indirect
github.com/markbates/errx v1.1.0 // indirect
github.com/markbates/oncer v1.0.0 // indirect
github.com/markbates/safe v1.0.1 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mattn/go-sqlite3 v2.0.3+incompatible // indirect
github.com/mitchellh/copystructure v1.0.0 // indirect
github.com/mitchellh/reflectwalk v1.0.1 // indirect
github.com/moul/advanced-ssh-config v2.8.0+incompatible // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
github.com/rs/zerolog v1.29.1 // indirect
github.com/sirupsen/logrus v1.9.3 // indirect
github.com/spf13/cast v1.7.0 // indirect
github.com/stretchr/testify v1.9.0 // indirect
golang.org/x/crypto v0.26.0 // indirect
golang.org/x/sys v0.24.0 // indirect
golang.org/x/term v0.23.0 // indirect
golang.org/x/text v0.17.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
moul.io/asciimoul v1.1.0 // indirect
)

// replace github.com/ultreme/histoire-pour-enfant-generator => ../../histoire-pour-enfant-generator
Loading