From 5525966701cd7e6eeb892f311166b14157efc476 Mon Sep 17 00:00:00 2001 From: Aga Dufrat Date: Wed, 4 Sep 2024 15:41:29 +0100 Subject: [PATCH] Downgrade CI to ubuntu-20.04 Attempting to fix GitHub Action runner issue: The hosted runner: GitHub Actions 289 lost communication with the server. Anything in your workflow that terminates the runner process, starves it for CPU/Memory, or blocks its network access can cause this error. --- .github/workflows/rspec.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/rspec.yml b/.github/workflows/rspec.yml index f311e6425..1ec464215 100644 --- a/.github/workflows/rspec.yml +++ b/.github/workflows/rspec.yml @@ -16,7 +16,7 @@ on: jobs: run-rspec: name: Run RSpec - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 steps: - name: Setup Postgres id: setup-postgres