From: Sarah Hoffmann Date: Thu, 24 Nov 2022 10:36:56 +0000 (+0100) Subject: actions: install keys for postgres repo X-Git-Tag: v4.2.0 X-Git-Url: https://git.openstreetmap.org/nominatim.git/commitdiff_plain/04ee39467a2c13e81db9c245f8bbef424121296c?hp=1f3edf6ebace87b81ccdba7a978e52a56d1922a0 actions: install keys for postgres repo --- diff --git a/.github/actions/setup-postgresql/action.yml b/.github/actions/setup-postgresql/action.yml index 19a19e17..416ced5f 100644 --- a/.github/actions/setup-postgresql/action.yml +++ b/.github/actions/setup-postgresql/action.yml @@ -15,7 +15,9 @@ runs: - name: Remove existing PostgreSQL run: | 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 install curl ca-certificates gnupg + curl https://www.postgresql.org/media/keys/ACCC4CF8.asc | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/apt.postgresql.org.gpg >/dev/null + sudo sh -c 'echo "deb https://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