From a2e4b5ec4bf0157bfe18b2d0017a50d86a32bc54 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Igor=20Jerosimi=C4=87?= <82369111+igor-wl@users.noreply.github.com> Date: Wed, 15 Oct 2025 10:01:25 +0200 Subject: [PATCH] Bump redis from 6 to 7.2 (#6118) --- .github/dependabot.yml | 9 +-------- .github/workflows/ci.yml | 2 +- {{cookiecutter.project_slug}}/.github/workflows/ci.yml | 2 +- {{cookiecutter.project_slug}}/docker-compose.local.yml | 2 +- .../docker-compose.production.yml | 2 +- 5 files changed, 5 insertions(+), 12 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 4d42e4598..3e09efc36 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -47,11 +47,4 @@ updates: labels: - "update" - # Enable version updates for Docker Compose files - - package-ecosystem: "docker-compose" - directories: - - "{{cookiecutter.project_slug}}/" - schedule: - interval: "daily" - labels: - - "update" + # NOTE: Package ecosystem "docker-compose" can't handle Jinja tags in yml files diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2d51a708d..d1b432ac4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -77,7 +77,7 @@ jobs: runs-on: ubuntu-latest services: redis: - image: redis:5.0 + image: redis:7.2 ports: - 6379:6379 postgres: diff --git a/{{cookiecutter.project_slug}}/.github/workflows/ci.yml b/{{cookiecutter.project_slug}}/.github/workflows/ci.yml index 0faf12235..4b662fcb9 100644 --- a/{{cookiecutter.project_slug}}/.github/workflows/ci.yml +++ b/{{cookiecutter.project_slug}}/.github/workflows/ci.yml @@ -44,7 +44,7 @@ jobs: services: {%- if cookiecutter.use_celery == 'y' %} redis: - image: redis:6 + image: redis:7.2 ports: - 6379:6379 {%- endif %} diff --git a/{{cookiecutter.project_slug}}/docker-compose.local.yml b/{{cookiecutter.project_slug}}/docker-compose.local.yml index e96826cc2..d8e919cbc 100644 --- a/{{cookiecutter.project_slug}}/docker-compose.local.yml +++ b/{{cookiecutter.project_slug}}/docker-compose.local.yml @@ -52,7 +52,7 @@ services: {%- if cookiecutter.use_celery == 'y' %} redis: - image: docker.io/redis:6 + image: docker.io/redis:7.2 container_name: {{ cookiecutter.project_slug }}_local_redis volumes: - {{ cookiecutter.project_slug }}_local_redis_data:/data diff --git a/{{cookiecutter.project_slug}}/docker-compose.production.yml b/{{cookiecutter.project_slug}}/docker-compose.production.yml index d0d06338d..f0949a16b 100644 --- a/{{cookiecutter.project_slug}}/docker-compose.production.yml +++ b/{{cookiecutter.project_slug}}/docker-compose.production.yml @@ -69,7 +69,7 @@ services: {%- endif %} redis: - image: docker.io/redis:6 + image: docker.io/redis:7.2 {% if cookiecutter.use_celery == 'y' %} volumes: - production_redis_data:/data