Use postgreSQL 14 as postgres Docker image

PostgreSQL 13 will reach its end-of-life on November 13, 2025. So we're
upgrading before that happens.

We're also upgrading to PostgreSQL 14 in our CI. In this case, we're
using the default distribution (Trixie, as of October 2025); it doesn't
affect the development or production environments, so it's OK if use the
default one.
This commit is contained in:
Javi Martín
2025-10-16 18:04:27 +02:00
parent 9533029eb9
commit 210a91bd8f
6 changed files with 6 additions and 6 deletions

View File

@@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-24.04
services:
postgres:
image: postgres:13.16
image: postgres:14.19
ports: ["5432:5432"]
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
env:

View File

@@ -19,7 +19,7 @@ jobs:
timeout-minutes: 60
services:
postgres:
image: postgres:13.16
image: postgres:14.19
ports: ["5432:5432"]
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
env: