From ca18a95fc718a239fd731b881df475f1f1a798ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Vinot?= Date: Mon, 25 Sep 2023 15:53:17 +0200 Subject: [PATCH] chg: Clone redis the GHA way --- .github/workflows/instance_test.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/instance_test.yml b/.github/workflows/instance_test.yml index 6e058613..6c3623dc 100644 --- a/.github/workflows/instance_test.yml +++ b/.github/workflows/instance_test.yml @@ -27,12 +27,17 @@ jobs: python-version: ${{matrix.python-version}} cache: 'poetry' + - name: Clone Redis + uses: actions/checkout@v4 + with: + repository: redis/redis + path: ../redis + ref: 7.2 + - name: Install and setup redis run: | pushd .. - git clone https://github.com/antirez/redis.git pushd redis - git checkout 7.0 make popd popd