From b7a5a8b5f79ac50bc8b58c83cdc30bc57ce5a9d0 Mon Sep 17 00:00:00 2001 From: Sarah Hoffmann Date: Wed, 14 Apr 2021 16:19:49 +0200 Subject: [PATCH] github actions: reintroduce postgresql repo --- .github/actions/setup-postgresql/action.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/actions/setup-postgresql/action.yml b/.github/actions/setup-postgresql/action.yml index 0742e663..060a6789 100644 --- a/.github/actions/setup-postgresql/action.yml +++ b/.github/actions/setup-postgresql/action.yml @@ -14,8 +14,10 @@ runs: steps: - name: Remove existing PostgreSQL run: | - sudo apt-get update -qq sudo apt-get purge -yq postgresql* + sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list' + sudo apt-get update -qq + shell: bash - name: Install PostgreSQL -- 2.45.1