diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index baad6bc..b64ec69 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -71,7 +71,7 @@ jobs: name: Platform tests strategy: matrix: - os: [ ubuntu-latest, windows-latest, macos-11 ] + os: [ ubuntu-latest, windows-latest, macos-14 ] runs-on: ${{ matrix.os }} steps: - name: Checkout diff --git a/config.go b/config.go index 97e48d0..00faebd 100644 --- a/config.go +++ b/config.go @@ -153,11 +153,11 @@ type PostgresVersion string // Predefined supported Postgres versions. const ( - V16 = PostgresVersion("16.2.0") - V15 = PostgresVersion("15.6.0") - V14 = PostgresVersion("14.11.0") - V13 = PostgresVersion("13.14.0") - V12 = PostgresVersion("12.17.0") + V16 = PostgresVersion("16.3.0") + V15 = PostgresVersion("15.7.0") + V14 = PostgresVersion("14.12.0") + V13 = PostgresVersion("13.15.0") + V12 = PostgresVersion("12.19.0") V11 = PostgresVersion("11.22.0") V10 = PostgresVersion("10.23.0") V9 = PostgresVersion("9.6.24")