Skip to content

Commit dfedf9e

Browse files
chore(all): update all
1 parent 6be7093 commit dfedf9e

5 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
steps:
1616

1717
- name: Checkout
18-
uses: actions/checkout@v4.2.1
18+
uses: actions/checkout@v4.2.2
1919

2020
- name: Set up Go
21-
uses: actions/setup-go@v5.0.2
21+
uses: actions/setup-go@v5.5.0
2222
with:
2323
go-version: ${{ matrix.go-version }}
2424

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.23 AS builder
1+
FROM golang:1.24 AS builder
22

33
WORKDIR /source
44
# Copy the Go Modules manifests

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ services:
44
redis:
55
# https://hub.docker.com/_/redis
66
# https://hub.docker.com/_/redis/tags?page=1&name=7.&ordering=last_updated
7-
image: redis:7.4.1
7+
image: redis:7.4.4
88
restart: always
99
container_name: redis-container
1010
volumes:

frontend/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# https://hub.docker.com/r/nginxinc/nginx-unprivileged/tags?page=1&ordering=last_updated
2-
FROM nginxinc/nginx-unprivileged:1.27
2+
FROM nginxinc/nginx-unprivileged:1.29
33
USER root
44
ENV DEBIAN_FRONTEND=noninteractive
55
ENV APT="apt-get --no-install-recommends --yes"

go.mod

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ module github.com/AndriyKalashnykov/gqlgen-graphql-subscriptions
33
go 1.23
44

55
require (
6-
github.com/99designs/gqlgen v0.17.55
6+
github.com/99designs/gqlgen v0.17.76
77
github.com/gorilla/websocket v1.5.3
8-
github.com/labstack/echo/v4 v4.12.0
9-
github.com/redis/go-redis/v9 v9.7.0
8+
github.com/labstack/echo/v4 v4.13.4
9+
github.com/redis/go-redis/v9 v9.11.0
1010
github.com/thanhpk/randstr v1.0.6
11-
github.com/vektah/gqlparser/v2 v2.5.18
11+
github.com/vektah/gqlparser/v2 v2.5.30
1212
)
1313

1414
require (
@@ -32,6 +32,6 @@ require (
3232
golang.org/x/time v0.7.0 // indirect
3333
)
3434

35-
replace github.com/redis/go-redis/v9 => github.com/go-redis/redis/v9 v9.7.0
35+
replace github.com/redis/go-redis/v9 => github.com/go-redis/redis/v9 v9.11.0
3636

37-
replace github.com/go-redis/redis/v9 => github.com/redis/go-redis/v9 v9.7.0
37+
replace github.com/go-redis/redis/v9 => github.com/redis/go-redis/v9 v9.11.0

0 commit comments

Comments
 (0)