From f8722361e4a0de69af043cab10bfd20a60febdcb Mon Sep 17 00:00:00 2001 From: Michael Long Date: Fri, 20 Sep 2024 21:57:23 -0400 Subject: [PATCH] Remove deprecated action --- .github/workflows/ci.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 557e54c..1c70dda 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,8 +31,7 @@ jobs: - name: Start database services run: docker compose up -d database redis - name: Wait for database startup to finish - uses: jakejarvis/wait-action@master - with: - time: '10s' + run: sleep 10s + shell: bash - name: Run backend tests run: ./scripts/test_backend.sh