From 24b2747b8da2555ac74a5369e43f73e0c5146f8b Mon Sep 17 00:00:00 2001 From: Sloane Hertel <19572925+s-hertel@users.noreply.github.com> Date: Tue, 6 May 2025 10:41:31 -0400 Subject: [PATCH] Fix old_style_cache_plugins test failure using latest redis (#85092) Pin last working version instead --- .../targets/old_style_cache_plugins/setup_redis_cache.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/integration/targets/old_style_cache_plugins/setup_redis_cache.yml b/test/integration/targets/old_style_cache_plugins/setup_redis_cache.yml index b7cd4831b41..ae0d5b3d020 100644 --- a/test/integration/targets/old_style_cache_plugins/setup_redis_cache.yml +++ b/test/integration/targets/old_style_cache_plugins/setup_redis_cache.yml @@ -20,22 +20,22 @@ - name: get the latest stable redis server release get_url: - url: https://download.redis.io/redis-stable.tar.gz + url: https://download.redis.io/releases/redis-7.4.3.tar.gz dest: ./ timeout: 60 - name: unzip download unarchive: - src: redis-stable.tar.gz + src: redis-7.4.3.tar.gz dest: ./ - command: "{{ make }}" args: - chdir: redis-stable + chdir: redis-7.4.3 - name: copy the executable into the path copy: - src: "redis-stable/src/{{ item }}" + src: "redis-7.4.3/src/{{ item }}" dest: /usr/local/bin/ mode: 755 become: yes