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(all): update all #64

Merged
merged 1 commit into from
Jul 30, 2024
Merged
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 .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
steps:

- name: Checkout
uses: actions/[email protected].1
uses: actions/[email protected].7

- name: Set up Go
uses: actions/[email protected].0
uses: actions/[email protected].2
with:
go-version: ${{ matrix.go-version }}

Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ services:
redis:
# https://hub.docker.com/_/redis
# https://hub.docker.com/_/redis/tags?page=1&name=7.&ordering=last_updated
image: redis:7.2.4
image: redis:7.4.0
restart: always
container_name: redis-container
volumes:
Expand Down
2 changes: 1 addition & 1 deletion frontend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# https://hub.docker.com/r/nginxinc/nginx-unprivileged/tags?page=1&ordering=last_updated
FROM nginxinc/nginx-unprivileged:1.26
FROM nginxinc/nginx-unprivileged:1.27
USER root
ENV DEBIAN_FRONTEND=noninteractive
ENV APT="apt-get --no-install-recommends --yes"
Expand Down
14 changes: 7 additions & 7 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ module github.com/AndriyKalashnykov/gqlgen-graphql-subscriptions
go 1.22

require (
github.com/99designs/gqlgen v0.17.45
github.com/gorilla/websocket v1.5.1
github.com/labstack/echo/v4 v4.11.4
github.com/redis/go-redis/v9 v9.5.1
github.com/99designs/gqlgen v0.17.49
github.com/gorilla/websocket v1.5.3
github.com/labstack/echo/v4 v4.12.0
github.com/redis/go-redis/v9 v9.6.1
github.com/thanhpk/randstr v1.0.6
github.com/vektah/gqlparser/v2 v2.5.11
github.com/vektah/gqlparser/v2 v2.5.16
)

require (
Expand All @@ -32,6 +32,6 @@ require (
golang.org/x/time v0.5.0 // indirect
)

replace github.com/redis/go-redis/v9 => github.com/go-redis/redis/v9 v9.5.1
replace github.com/redis/go-redis/v9 => github.com/go-redis/redis/v9 v9.6.1

replace github.com/go-redis/redis/v9 => github.com/redis/go-redis/v9 v9.5.1
replace github.com/go-redis/redis/v9 => github.com/redis/go-redis/v9 v9.6.1