From 952a27e60925c1273b400c0910d836aaa0978791 Mon Sep 17 00:00:00 2001 From: S-H-GAMELINKS Date: Mon, 23 Sep 2024 04:21:33 +0900 Subject: [PATCH 1/2] Use Valkey for CI --- .github/workflows/test-e2e.yml | 7 +------ .github/workflows/test-migrations.yml | 7 +------ .github/workflows/test-ruby.yml | 7 +------ 3 files changed, 3 insertions(+), 18 deletions(-) diff --git a/.github/workflows/test-e2e.yml b/.github/workflows/test-e2e.yml index 51e51a3747452a..2a15fca3bd5414 100644 --- a/.github/workflows/test-e2e.yml +++ b/.github/workflows/test-e2e.yml @@ -33,12 +33,7 @@ jobs: - 5432:5432 redis: - image: redis:7-alpine - options: >- - --health-cmd "redis-cli ping" - --health-interval 10s - --health-timeout 5s - --health-retries 5 + image: valkey:8-alpine ports: - 6379:6379 diff --git a/.github/workflows/test-migrations.yml b/.github/workflows/test-migrations.yml index 6a0e67c58ee500..39a05496a2dd58 100644 --- a/.github/workflows/test-migrations.yml +++ b/.github/workflows/test-migrations.yml @@ -48,12 +48,7 @@ jobs: - 5432:5432 redis: - image: redis:7-alpine - options: >- - --health-cmd "redis-cli ping" - --health-interval 10ms - --health-timeout 3s - --health-retries 50 + image: valkey:8-alpine ports: - 6379:6379 diff --git a/.github/workflows/test-ruby.yml b/.github/workflows/test-ruby.yml index 42884dbc1f3199..c7de6b98257b53 100644 --- a/.github/workflows/test-ruby.yml +++ b/.github/workflows/test-ruby.yml @@ -100,12 +100,7 @@ jobs: - 5432:5432 redis: - image: redis:7-alpine - options: >- - --health-cmd "redis-cli ping" - --health-interval 10ms - --health-timeout 3s - --health-retries 50 + image: valkey:8-alpine ports: - 6379:6379 From 825f48398e7e7108e5311aa4f2e899e27f8c312b Mon Sep 17 00:00:00 2001 From: S-H-GAMELINKS Date: Mon, 23 Sep 2024 04:24:32 +0900 Subject: [PATCH 2/2] Fix pull image path --- .github/workflows/test-e2e.yml | 2 +- .github/workflows/test-migrations.yml | 2 +- .github/workflows/test-ruby.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test-e2e.yml b/.github/workflows/test-e2e.yml index 2a15fca3bd5414..7fe0f516018f05 100644 --- a/.github/workflows/test-e2e.yml +++ b/.github/workflows/test-e2e.yml @@ -33,7 +33,7 @@ jobs: - 5432:5432 redis: - image: valkey:8-alpine + image: valkey/valkey:8-alpine ports: - 6379:6379 diff --git a/.github/workflows/test-migrations.yml b/.github/workflows/test-migrations.yml index 39a05496a2dd58..9a46e98a873f3f 100644 --- a/.github/workflows/test-migrations.yml +++ b/.github/workflows/test-migrations.yml @@ -48,7 +48,7 @@ jobs: - 5432:5432 redis: - image: valkey:8-alpine + image: valkey/valkey:8-alpine ports: - 6379:6379 diff --git a/.github/workflows/test-ruby.yml b/.github/workflows/test-ruby.yml index c7de6b98257b53..e164727a491ea4 100644 --- a/.github/workflows/test-ruby.yml +++ b/.github/workflows/test-ruby.yml @@ -100,7 +100,7 @@ jobs: - 5432:5432 redis: - image: valkey:8-alpine + image: valkey/valkey:8-alpine ports: - 6379:6379