From 2b7f6b2b8433b80e03fb25d0e80379c30790da5a Mon Sep 17 00:00:00 2001 From: mmetc <92726601+mmetc@users.noreply.github.com> Date: Mon, 17 Oct 2022 09:21:55 +0200 Subject: [PATCH] force postgres 14 for func tests (#1813) the postgres 15 image (released two days ago) has a permission issue. proper fix will follow --- .github/workflows/bats-postgres.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/bats-postgres.yml b/.github/workflows/bats-postgres.yml index 63a507cc3..b48602288 100644 --- a/.github/workflows/bats-postgres.yml +++ b/.github/workflows/bats-postgres.yml @@ -14,7 +14,7 @@ jobs: timeout-minutes: 20 services: database: - image: postgres:latest + image: postgres:14 env: POSTGRES_PASSWORD: "secret" ports: