Skip to content
Closed
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
2 changes: 1 addition & 1 deletion tests/dockers/.env.v8.8
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# Used by the run-tests GitHub Action

# Redis CE image version (Redis 8+ includes modules natively)
CLIENT_LIBS_TEST_IMAGE=redislabs/client-libs-test:8.8-rc1
CLIENT_LIBS_TEST_IMAGE=redislabs/client-libs-test:custom-26235535976-debian
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Custom CI build image used as permanent default

Medium Severity

The image tag custom-26235535976-debian appears to be a transient CI build artifact (the numeric portion resembles a GitHub Actions run ID), unlike every other version which uses stable release tags (e.g., 8.6.3, 8.4.3). If this custom image is cleaned up from the registry, all CI runs using the v8.8 profile — and any run not specifying an env file (since docker-compose.yml defaults were also changed) — will fail. This looks like a temporary testing reference that may not be intended for permanent commit.

Additional Locations (2)
Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit bd096b1. Configure here.

4 changes: 2 additions & 2 deletions tests/dockers/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
services:

redis:
image: ${CLIENT_LIBS_TEST_IMAGE:-redislabs/client-libs-test:8.8-rc1}
image: ${CLIENT_LIBS_TEST_IMAGE:-redislabs/client-libs-test:custom-26235535976-debian}
container_name: redis-standalone
environment:
- TLS_ENABLED=yes
Expand All @@ -21,7 +21,7 @@ services:
- all

cluster:
image: ${CLIENT_LIBS_TEST_IMAGE:-redislabs/client-libs-test:8.8-rc1}
image: ${CLIENT_LIBS_TEST_IMAGE:-redislabs/client-libs-test:custom-26235535976-debian}
container_name: redis-cluster
environment:
- REDIS_CLUSTER=yes
Expand Down
Loading