diff --git a/.github/workflows/coverity.yaml b/.github/workflows/coverity.yaml index b46908a5b..e9a52dfdc 100644 --- a/.github/workflows/coverity.yaml +++ b/.github/workflows/coverity.yaml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - pg: ["12.11", "13.7", "14.4"] + pg: ["12.12", "13.8", "14.5"] os: [ubuntu-20.04] env: PG_SRC_DIR: pgbuild diff --git a/.github/workflows/linux-32bit-build-and-test.yaml b/.github/workflows/linux-32bit-build-and-test.yaml index 27f7144b5..8b02df502 100644 --- a/.github/workflows/linux-32bit-build-and-test.yaml +++ b/.github/workflows/linux-32bit-build-and-test.yaml @@ -20,7 +20,7 @@ jobs: strategy: fail-fast: false matrix: - pg: ["12.11","13.7","14.4"] + pg: ["12.12","13.8","14.5"] build_type: [ Debug ] steps: diff --git a/.github/workflows/sanitizer-build-and-test.yaml b/.github/workflows/sanitizer-build-and-test.yaml index 187427b99..5e78ab74b 100644 --- a/.github/workflows/sanitizer-build-and-test.yaml +++ b/.github/workflows/sanitizer-build-and-test.yaml @@ -44,7 +44,7 @@ jobs: matrix: # "os" has to be in the matrix due to a bug in "env": https://github.community/t/how-to-use-env-context/16975 os: ["ubuntu-20.04"] - pg: ["12.11","13.7","14.4"] + pg: ["12.12","13.8","14.5"] steps: - name: Install Linux Dependencies run: | diff --git a/.github/workflows/sqlsmith.yaml b/.github/workflows/sqlsmith.yaml index 6bd65a328..39fd3b572 100644 --- a/.github/workflows/sqlsmith.yaml +++ b/.github/workflows/sqlsmith.yaml @@ -14,7 +14,7 @@ jobs: strategy: matrix: os: ["ubuntu-20.04"] - pg: ["14.4"] + pg: ["14.5"] cc: ["gcc"] build_type: ["Debug"] fail-fast: false diff --git a/.github/workflows/update-test.yaml b/.github/workflows/update-test.yaml index b48125708..9cbcad9ff 100644 --- a/.github/workflows/update-test.yaml +++ b/.github/workflows/update-test.yaml @@ -13,7 +13,7 @@ jobs: runs-on: 'ubuntu-latest' strategy: matrix: - pg: ["12.11", "13.7", "14.4"] + pg: ["12.12", "13.8", "14.5"] fail-fast: false env: PG_VERSION: ${{ matrix.pg }} @@ -44,7 +44,7 @@ jobs: runs-on: 'ubuntu-latest' strategy: matrix: - pg: ["12.11", "13.7", "14.4"] + pg: ["12.12", "13.8", "14.5"] fail-fast: false env: PG_VERSION: ${{ matrix.pg }} diff --git a/.github/workflows/windows-build-and-test.yaml b/.github/workflows/windows-build-and-test.yaml index 2ec7e1464..85419de2b 100644 --- a/.github/workflows/windows-build-and-test.yaml +++ b/.github/workflows/windows-build-and-test.yaml @@ -17,11 +17,11 @@ jobs: build_type: [ Debug, Release ] include: - pg: 12 - pkg_version: 12.11.1 + pkg_version: 12.12.1 - pg: 13 - pkg_version: 13.7.1 + pkg_version: 13.8.1 - pg: 14 - pkg_version: 14.4.1 + pkg_version: 14.5.1 build_args: -DUSE_OPENSSL=OFF env: # PostgreSQL configuration diff --git a/scripts/gh_matrix_builder.py b/scripts/gh_matrix_builder.py index 7eb089efe..ced63def8 100644 --- a/scripts/gh_matrix_builder.py +++ b/scripts/gh_matrix_builder.py @@ -22,11 +22,11 @@ import sys event_type = sys.argv[1] PG12_EARLIEST = "12.0" -PG12_LATEST = "12.11" +PG12_LATEST = "12.12" PG13_EARLIEST = "13.2" -PG13_LATEST = "13.7" +PG13_LATEST = "13.8" PG14_EARLIEST = "14.0" -PG14_LATEST = "14.4" +PG14_LATEST = "14.5" m = {"include": [],} @@ -39,7 +39,7 @@ def build_debug_config(overrides): # with gcc as clang is used to compile the llvm parts. # # Strictly speaking, WARNINGS_AS_ERRORS=ON is not needed here, but - # we add it as a precation. Intention is to have at least one + # we add it as a precaution. Intention is to have at least one # release and one debug build with WARNINGS_AS_ERRORS=ON so that we # capture warnings generated due to changes in the code base or the # compiler.