Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
4 changes: 2 additions & 2 deletions .github/actions/run-tests/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ runs:

# Mapping of redis version to stack version
declare -A redis_stack_version_mapping=(
["7.4.1"]="rs-7.4.0-v1"
["7.2.6"]="rs-7.2.0-v13"
["7.4.1"]="rs-7.4.0-v5"
["7.2.6"]="rs-7.2.0-v17"
["6.2.16"]="rs-6.2.6-v17"
)

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ concurrency:

env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
CURRENT_REDIS_VERSION: '7.4.1'
CURRENT_REDIS_VERSION: '8.0.2'

jobs:
redis_version:
Expand All @@ -37,7 +37,7 @@ jobs:
max-parallel: 15
fail-fast: false
matrix:
redis-version: [ '8.0-RC2-pre', '${{ needs.redis_version.outputs.CURRENT }}', '7.2.6', '6.2.16']
redis-version: [ '8.2-RC1-pre', '${{ needs.redis_version.outputs.CURRENT }}', '7.4.4', '7.2.6', '6.2.16']
Copy link
Collaborator

Choose a reason for hiding this comment

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

do you mean 7.4.1 here? there is no 7.4.4 in redis_stack_version_mapping

dotnet-version: ['6.0', '7.0', '8.0']
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
Expand All @@ -59,7 +59,7 @@ jobs:
strategy:
fail-fast: false
matrix:
redis-stack-version: ['6.2.6-v18', '7.2.0-v14', '7.4.0-v2']
redis-stack-version: ['6.2.6-v18', '7.2.0-v17', '7.4.0-v5']
env:
redis_stack_version: ${{matrix.redis-stack-version}}
USER_NAME: ${{ secrets.USER_NAME }}
Expand Down
Loading