From 78f96a8aa28952ecf77e2f727d4290761500a76b Mon Sep 17 00:00:00 2001 From: Thomas von Deyen Date: Mon, 17 Aug 2026 17:49:37 +0200 Subject: [PATCH] chore: Test with latest postgres (18) We were testing with 13, which is already EOL. We want to be sure that we do not get any regressions with newer postgres versions, so we should test with latest all the time --- .github/workflows/test_solidus.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test_solidus.yml b/.github/workflows/test_solidus.yml index f824ae5967..c0d0f2254f 100644 --- a/.github/workflows/test_solidus.yml +++ b/.github/workflows/test_solidus.yml @@ -55,7 +55,7 @@ jobs: SOLIDUS_RAISE_DEPRECATIONS: true services: postgres: - image: postgres:13 + image: postgres:latest env: POSTGRES_USER: ${{ env.DB_USERNAME }} POSTGRES_PASSWORD: ${{ env.DB_PASSWORD }}