From 85e947b2520c81f1f8c0a4ad3ce29169a88fc523 Mon Sep 17 00:00:00 2001 From: M Sazzadul Hoque <7600764+sazzad16@users.noreply.github.com> Date: Wed, 29 Jan 2025 15:55:41 +0600 Subject: [PATCH] Use 8.0-M04-pre image --- .github/workflows/integration.yml | 6 +++--- .../io/lettuce/core/RedisContainerIntegrationTests.java | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 9f061d0cd..80a807f64 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -19,10 +19,10 @@ on: redis_version: description: "Redis stack version to use for testing" required: false - default: "8.0-M02" + default: "8.0-M04-pre" type: choice options: - - "8.0-M02" + - "8.0-M04-pre" - "rs-7.4.0-v1" - "rs-7.2.0-v13" @@ -61,7 +61,7 @@ jobs: run: | make test-coverage env: - REDIS_STACK_VERSION: ${{ inputs.redis_version || '8.0-M02' }} + REDIS_STACK_VERSION: ${{ inputs.redis_version || '8.0-M04-pre' }} JVM_OPTS: -Xmx3200m TERM: dumb - name: Upload coverage reports to Codecov diff --git a/src/test/java/io/lettuce/core/RedisContainerIntegrationTests.java b/src/test/java/io/lettuce/core/RedisContainerIntegrationTests.java index 5eda44ffd..f276e37ee 100644 --- a/src/test/java/io/lettuce/core/RedisContainerIntegrationTests.java +++ b/src/test/java/io/lettuce/core/RedisContainerIntegrationTests.java @@ -26,7 +26,7 @@ public class RedisContainerIntegrationTests { private static final String REDIS_STACK_CLUSTER = "clustered-stack"; - private static final String REDIS_STACK_VERSION = System.getProperty("REDIS_STACK_VERSION", "8.0-M02");; + private static final String REDIS_STACK_VERSION = System.getProperty("REDIS_STACK_VERSION", "8.0-M04-pre");; private static Exception initializationException;