fix: Move to valkey 8.0

pull/963/head
Raphaël Vinot 2024-10-17 17:45:44 +02:00
parent 628ba438d7
commit 9961c8c5e0
1 changed files with 7 additions and 7 deletions

View File

@ -26,18 +26,18 @@ jobs:
- name: Install poetry
run: pipx install poetry
- name: Clone Redis
- name: Clone Valkey
uses: actions/checkout@v4
with:
repository: redis/redis
path: redis-tmp
ref: 7.2
repository: valkey-io/valkey
path: valkey-tmp
ref: "8.0"
- name: Install and setup redis
- name: Install and setup valkey
run: |
mv redis-tmp ../redis
mv valkey-tmp ../valkey
pushd ..
pushd redis
pushd valkey
make
popd
popd