]> git.openstreetmap.org Git - nominatim.git/commitdiff
actions: install keys for postgres repo v4.2.0
authorSarah Hoffmann <lonvia@denofr.de>
Thu, 24 Nov 2022 10:36:56 +0000 (11:36 +0100)
committerSarah Hoffmann <lonvia@denofr.de>
Thu, 24 Nov 2022 13:04:05 +0000 (14:04 +0100)
.github/actions/setup-postgresql/action.yml

index 19a19e17e12c65c06044a381045d523e160ab16a..416ced5fb4373b8b7cd2123a52dc70a0f317617b 100644 (file)
@@ -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