From b2e099e1d6472000bb5d89381aabf62431b55376 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 10 Sep 2025 12:24:34 +0000 Subject: [PATCH] chore(all): update all --- .github/workflows/ci.yml | 4 ++-- Dockerfile | 2 +- docker-compose.yml | 2 +- frontend/Dockerfile | 2 +- go.mod | 12 ++++++------ 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f929508..3dadbde 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,10 +15,10 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4.2.1 + uses: actions/checkout@v4.3.0 - name: Set up Go - uses: actions/setup-go@v5.0.2 + uses: actions/setup-go@v5.5.0 with: go-version: ${{ matrix.go-version }} diff --git a/Dockerfile b/Dockerfile index c3b02e4..f81433b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.23 AS builder +FROM golang:1.25 AS builder WORKDIR /source # Copy the Go Modules manifests diff --git a/docker-compose.yml b/docker-compose.yml index a1c45ee..cf5c05e 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -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.4.1 + image: redis:7.4.5 restart: always container_name: redis-container volumes: diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 384275f..a2d879b 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -1,5 +1,5 @@ # https://hub.docker.com/r/nginxinc/nginx-unprivileged/tags?page=1&ordering=last_updated -FROM nginxinc/nginx-unprivileged:1.27 +FROM nginxinc/nginx-unprivileged:1.29 USER root ENV DEBIAN_FRONTEND=noninteractive ENV APT="apt-get --no-install-recommends --yes" diff --git a/go.mod b/go.mod index 1d1e626..dea18f4 100644 --- a/go.mod +++ b/go.mod @@ -3,12 +3,12 @@ module github.com/AndriyKalashnykov/gqlgen-graphql-subscriptions go 1.23 require ( - github.com/99designs/gqlgen v0.17.55 + github.com/99designs/gqlgen v0.17.78 github.com/gorilla/websocket v1.5.3 - github.com/labstack/echo/v4 v4.12.0 - github.com/redis/go-redis/v9 v9.7.0 + github.com/labstack/echo/v4 v4.13.4 + github.com/redis/go-redis/v9 v9.14.0 github.com/thanhpk/randstr v1.0.6 - github.com/vektah/gqlparser/v2 v2.5.18 + github.com/vektah/gqlparser/v2 v2.5.30 ) require ( @@ -32,6 +32,6 @@ require ( golang.org/x/time v0.7.0 // indirect ) -replace github.com/redis/go-redis/v9 => github.com/go-redis/redis/v9 v9.7.0 +replace github.com/redis/go-redis/v9 => github.com/go-redis/redis/v9 v9.14.0 -replace github.com/go-redis/redis/v9 => github.com/redis/go-redis/v9 v9.7.0 +replace github.com/go-redis/redis/v9 => github.com/redis/go-redis/v9 v9.14.0