Skip to content

Commit

Permalink
Bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
neoxelox committed Mar 27, 2024
1 parent 2853fc5 commit 858acdc
Show file tree
Hide file tree
Showing 13 changed files with 118 additions and 108 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Setup Go 🐻
uses: actions/setup-go@v5
with:
go-version: "1.21"
go-version: "1.22"
cache: true

- name: Setup Python 🐍
Expand Down
2 changes: 1 addition & 1 deletion envs/ci/api.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.21 AS builder
FROM golang:1.22 AS builder

ENV CGO_ENABLED=0 \
GO111MODULE=on \
Expand Down
2 changes: 1 addition & 1 deletion envs/ci/cli.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.21 AS builder
FROM golang:1.22 AS builder

ENV CGO_ENABLED=0 \
GO111MODULE=on \
Expand Down
2 changes: 1 addition & 1 deletion envs/ci/worker.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.21 AS builder
FROM golang:1.22 AS builder

ENV CGO_ENABLED=0 \
GO111MODULE=on \
Expand Down
4 changes: 2 additions & 2 deletions envs/dev/api.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.21-alpine
FROM golang:1.22-alpine

ENV CGO_ENABLED=0 \
GO111MODULE=on \
Expand All @@ -8,7 +8,7 @@ ENV CGO_ENABLED=0 \
WORKDIR /app

# Setup air hot reloader
RUN wget https://github.com/cosmtrek/air/releases/download/v1.49.0/air_1.49.0_linux_amd64 -O air && \
RUN wget https://github.com/cosmtrek/air/releases/download/v1.51.0/air_1.51.0_linux_amd64 -O air && \
chmod +x air && \
mv ./air /bin/air

Expand Down
4 changes: 2 additions & 2 deletions envs/dev/cli.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.21-alpine
FROM golang:1.22-alpine

ENV CGO_ENABLED=0 \
GO111MODULE=on \
Expand All @@ -8,7 +8,7 @@ ENV CGO_ENABLED=0 \
WORKDIR /app

# Setup air hot reloader
RUN wget https://github.com/cosmtrek/air/releases/download/v1.49.0/air_1.49.0_linux_amd64 -O air && \
RUN wget https://github.com/cosmtrek/air/releases/download/v1.51.0/air_1.51.0_linux_amd64 -O air && \
chmod +x air && \
mv ./air /bin/air

Expand Down
4 changes: 2 additions & 2 deletions envs/dev/worker.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.21-alpine
FROM golang:1.22-alpine

ENV CGO_ENABLED=0 \
GO111MODULE=on \
Expand All @@ -8,7 +8,7 @@ ENV CGO_ENABLED=0 \
WORKDIR /app

# Setup air hot reloader
RUN wget https://github.com/cosmtrek/air/releases/download/v1.49.0/air_1.49.0_linux_amd64 -O air && \
RUN wget https://github.com/cosmtrek/air/releases/download/v1.51.0/air_1.51.0_linux_amd64 -O air && \
chmod +x air && \
mv ./air /bin/air

Expand Down
2 changes: 1 addition & 1 deletion envs/prod/api.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.21 AS builder
FROM golang:1.22 AS builder

ENV CGO_ENABLED=0 \
GO111MODULE=on \
Expand Down
2 changes: 1 addition & 1 deletion envs/prod/cli.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.21 AS builder
FROM golang:1.22 AS builder

ENV CGO_ENABLED=0 \
GO111MODULE=on \
Expand Down
2 changes: 1 addition & 1 deletion envs/prod/worker.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.21 AS builder
FROM golang:1.22 AS builder

ENV CGO_ENABLED=0 \
GO111MODULE=on \
Expand Down
50 changes: 25 additions & 25 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
module service

go 1.21.6
go 1.22.0

require (
github.com/hibiken/asynq v0.24.1
github.com/labstack/echo/v4 v4.11.4
github.com/leporo/sqlf v1.4.0
github.com/mkideal/cli v0.2.7
github.com/neoxelox/errors v0.2.0
github.com/neoxelox/kit v0.25.0
github.com/neoxelox/kit v0.26.0
github.com/rs/xid v1.5.0
golang.org/x/text v0.14.0
)
Expand All @@ -18,29 +18,29 @@ require (
github.com/aodin/date v0.0.0-20160219192542-c5f6146fc644 // indirect
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
github.com/eapache/go-resiliency v1.4.0 // indirect
github.com/getsentry/sentry-go v0.25.0 // indirect
github.com/eapache/go-resiliency v1.6.0 // indirect
github.com/getsentry/sentry-go v0.27.0 // indirect
github.com/go-redis/cache/v8 v8.4.4 // indirect
github.com/go-redis/redis/v8 v8.11.5 // indirect
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
github.com/golang-migrate/migrate/v4 v4.16.2 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/google/go-cmp v0.5.9 // indirect
github.com/golang-migrate/migrate/v4 v4.17.0 // indirect
github.com/golang/protobuf v1.5.4 // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/google/go-cpy v0.0.0-20211218193943-a9c933c06932 // indirect
github.com/google/uuid v1.3.1 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
github.com/jackc/pgconn v1.14.1 // indirect
github.com/jackc/pgerrcode v0.0.0-20220416144525-469b46aa5efa // indirect
github.com/jackc/pgconn v1.14.3 // indirect
github.com/jackc/pgerrcode v0.0.0-20240316143900-6e2875d9b438 // indirect
github.com/jackc/pgio v1.0.0 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgproto3/v2 v2.3.2 // indirect
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
github.com/jackc/pgtype v1.14.0 // indirect
github.com/jackc/pgx/v4 v4.18.1 // indirect
github.com/jackc/pgproto3/v2 v2.3.3 // indirect
github.com/jackc/pgservicefile v0.0.0-20231201235250-de7065d80cb9 // indirect
github.com/jackc/pgtype v1.14.3 // indirect
github.com/jackc/pgx/v4 v4.18.3 // indirect
github.com/jackc/puddle v1.3.0 // indirect
github.com/klauspost/compress v1.16.7 // indirect
github.com/klauspost/compress v1.17.7 // indirect
github.com/labstack/gommon v0.4.2 // indirect
github.com/lib/pq v1.10.9 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
Expand All @@ -49,23 +49,23 @@ require (
github.com/neoxelox/gilk v0.5.0 // indirect
github.com/randallmlough/pgxscan v0.3.0 // indirect
github.com/randallmlough/sqlmaper v0.0.0-20191117174101-7ad100a86097 // indirect
github.com/redis/go-redis/v9 v9.1.0 // indirect
github.com/redis/go-redis/v9 v9.5.1 // indirect
github.com/robfig/cron/v3 v3.0.1 // indirect
github.com/rs/zerolog v1.30.0 // indirect
github.com/rs/zerolog v1.32.0 // indirect
github.com/scylladb/go-set v1.0.2 // indirect
github.com/spf13/cast v1.5.1 // indirect
github.com/spf13/cast v1.6.0 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasttemplate v1.2.2 // indirect
github.com/vmihailenco/go-tinylfu v0.2.2 // indirect
github.com/vmihailenco/msgpack/v5 v5.3.5 // indirect
github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
go.uber.org/atomic v1.11.0 // indirect
golang.org/x/crypto v0.17.0 // indirect
golang.org/x/net v0.19.0 // indirect
golang.org/x/sync v0.3.0 // indirect
golang.org/x/sys v0.15.0 // indirect
golang.org/x/term v0.15.0 // indirect
golang.org/x/crypto v0.21.0 // indirect
golang.org/x/net v0.22.0 // indirect
golang.org/x/sync v0.6.0 // indirect
golang.org/x/sys v0.18.0 // indirect
golang.org/x/term v0.18.0 // indirect
golang.org/x/time v0.5.0 // indirect
google.golang.org/protobuf v1.31.0 // indirect
google.golang.org/protobuf v1.33.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
Loading

0 comments on commit 858acdc

Please sign in to comment.