From 8397b159dc7262e438cd3f6cdccda690838dabdb Mon Sep 17 00:00:00 2001 From: Julian Simioni Date: Wed, 29 Sep 2021 08:27:22 -0700 Subject: [PATCH] CI: use Ubuntu 18 for testing Test output can depend on the version of `sqlite3` installed, and currently our tests expect the output from roughly sqlite3 `v3.22`, which is what comes with Ubuntu 18. Eventually we'll upgrade everything to Ubuntu 20, but for now it's best to stick with the version of Ubuntu used in our Docker baseimage. --- .github/workflows/push.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index ab31230..2e77442 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -6,7 +6,7 @@ jobs: strategy: matrix: os: - - ubuntu-20.04 + - ubuntu-18.04 node-version: - 12.x - 14.x