From 98be7826a3742b7809b69ad9392dceb9145d13d1 Mon Sep 17 00:00:00 2001 From: Earl Warren Date: Sat, 25 May 2024 08:25:51 +0200 Subject: [PATCH] chore(dependency): pin redis to 7.2 for testing There is no need to pin a specific patch version for testing. The worst that can happen in this context is that the CI fails and it can be addressed in this context. It will not impact releases. --- .forgejo/workflows/testing.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.forgejo/workflows/testing.yml b/.forgejo/workflows/testing.yml index a2d6e1ba6b..3e265e7099 100644 --- a/.forgejo/workflows/testing.yml +++ b/.forgejo/workflows/testing.yml @@ -54,7 +54,7 @@ jobs: MINIO_ROOT_USER: 123456 MINIO_ROOT_PASSWORD: 12345678 redis: - image: redis:7.2.5 + image: redis:7.2 steps: - uses: https://code.forgejo.org/actions/checkout@v3 - uses: https://code.forgejo.org/actions/setup-go@v4