From 85361d6e4b8a4d042b2bc90dfadc1178c6b7918b Mon Sep 17 00:00:00 2001 From: Nedyalko Dyakov Date: Mon, 16 Jun 2025 17:10:43 +0300 Subject: [PATCH] chore(ci): update CI redis builds --- .github/actions/run-tests/action.yml | 6 +++--- .github/workflows/build.yml | 14 +++++++------- .github/workflows/doctests.yaml | 2 +- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/actions/run-tests/action.yml b/.github/actions/run-tests/action.yml index 0696f38d..e9bb7e79 100644 --- a/.github/actions/run-tests/action.yml +++ b/.github/actions/run-tests/action.yml @@ -25,9 +25,9 @@ runs: # Mapping of redis version to redis testing containers declare -A redis_version_mapping=( - ["8.0.1"]="8.0.1-pre" - ["7.4.2"]="rs-7.4.0-v2" - ["7.2.7"]="rs-7.2.0-v14" + ["8.0.x"]="8.0.2" + ["7.4.x"]="rs-7.4.0-v5" + ["7.2.x"]="rs-7.2.0-v17" ) if [[ -v redis_version_mapping[$REDIS_VERSION] ]]; then diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bde6cc72..c8b3d1b6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,8 +18,8 @@ jobs: fail-fast: false matrix: redis-version: - - "8.0.1" # 8.0.1 - - "7.4.2" # should use redis stack 7.4 + - "8.0.x" # Redis CE 8.0 + - "7.4.x" # Redis stack 7.4 go-version: - "1.23.x" - "1.24.x" @@ -43,8 +43,8 @@ jobs: # Mapping of redis version to redis testing containers declare -A redis_version_mapping=( - ["8.0.1"]="8.0.1-pre" - ["7.4.2"]="rs-7.4.0-v2" + ["8.0.x"]="8.0.2" + ["7.4.x"]="rs-7.4.0-v5" ) if [[ -v redis_version_mapping[$REDIS_VERSION] ]]; then echo "REDIS_VERSION=${redis_version_np}" >> $GITHUB_ENV @@ -72,9 +72,9 @@ jobs: fail-fast: false matrix: redis-version: - - "8.0.1" # 8.0.1 - - "7.4.2" # should use redis stack 7.4 - - "7.2.7" # should redis stack 7.2 + - "8.0.x" # Redis CE 8.0 + - "7.4.x" # Redis stack 7.4 + - "7.2.x" # Redis stack 7.2 go-version: - "1.23.x" - "1.24.x" diff --git a/.github/workflows/doctests.yaml b/.github/workflows/doctests.yaml index bef6ecf4..321654fa 100644 --- a/.github/workflows/doctests.yaml +++ b/.github/workflows/doctests.yaml @@ -16,7 +16,7 @@ jobs: services: redis-stack: - image: redislabs/client-libs-test:8.0.1-pre + image: redislabs/client-libs-test:8.0.2 env: TLS_ENABLED: no REDIS_CLUSTER: no