From 1c9e3fabc2485b3c1f541364a0aa7ef4e3b5725f Mon Sep 17 00:00:00 2001 From: Naisila Puka <37271756+naisila@users.noreply.github.com> Date: Mon, 5 Jun 2023 14:03:39 +0300 Subject: [PATCH] Bump PGversions for CI tests (#6969) Postgres got minor updates in May, this starts using the images with the latest version for our tests. These new Postgres versions didn't cause any compilation issues or test failures. Depends on https://github.com/citusdata/the-process/pull/136 --- .circleci/config.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 1a73a4b96..d99398790 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -6,19 +6,19 @@ orbs: parameters: image_suffix: type: string - default: '-vabeb997' + default: '-vf5dc39a' pg13_version: type: string - default: '13.10' + default: '13.11' pg14_version: type: string - default: '14.7' + default: '14.8' pg15_version: type: string - default: '15.2' + default: '15.3' upgrade_pg_versions: type: string - default: '13.10-14.7-15.2' + default: '13.11-14.8-15.3' style_checker_tools_version: type: string default: '0.8.18'