From: Arran Cudbard-Bell Date: Mon, 2 Sep 2024 00:21:38 +0000 (-0600) Subject: Just use the latest version of postgresql X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1a249f5465b99b8958ef0e22f5a857c9b46519af;p=thirdparty%2Ffreeradius-server.git Just use the latest version of postgresql --- diff --git a/.github/actions/ci-tests/action.yml b/.github/actions/ci-tests/action.yml index a00d43203a..0ae809089e 100644 --- a/.github/actions/ci-tests/action.yml +++ b/.github/actions/ci-tests/action.yml @@ -136,7 +136,7 @@ runs: if: ${{ inputs.use_docker != 'true' }} shell: bash run: | - export PG_VER=14 + export PG_VER=$(ls /etc/postgresql | sort -r | head -1) sudo sh -c "echo host all all 127.0.0.1/32 trust > /etc/postgresql/$PG_VER/main/pg_hba.conf" sudo sh -c "echo local all all trust >> /etc/postgresql/$PG_VER/main/pg_hba.conf"