X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/6463839b4b5c3577dcce72795513c1a75444adb4..57598a048e9124b905572ed8dc4fa9465b5d38a6:/.github/actions/setup-postgresql/action.yml diff --git a/.github/actions/setup-postgresql/action.yml b/.github/actions/setup-postgresql/action.yml index 416ced5f..331d094a 100644 --- a/.github/actions/setup-postgresql/action.yml +++ b/.github/actions/setup-postgresql/action.yml @@ -4,9 +4,6 @@ inputs: postgresql-version: description: 'Version of PostgreSQL to install' required: true - postgis-version: - description: 'Version of Postgis to install' - required: true runs: using: "composite" @@ -24,11 +21,10 @@ runs: - name: Install PostgreSQL run: | - sudo apt-get install -y -qq --no-install-suggests --no-install-recommends postgresql-client-${PGVER} postgresql-${PGVER}-postgis-${POSTGISVER} postgresql-${PGVER}-postgis-${POSTGISVER}-scripts postgresql-contrib-${PGVER} postgresql-${PGVER} + sudo apt-get install -y -qq --no-install-suggests --no-install-recommends postgresql-client-${PGVER} postgresql-${PGVER}-postgis-3 postgresql-${PGVER}-postgis-3-scripts postgresql-contrib-${PGVER} postgresql-${PGVER} shell: bash env: PGVER: ${{ inputs.postgresql-version }} - POSTGISVER: ${{ inputs.postgis-version }} - name: Adapt postgresql configuration run: |