Skip to content

Commit

Permalink
Bump PG versions used in CI
Browse files Browse the repository at this point in the history
Use newly released 13.13, 14.10, 15.5 and 16.1 in CI.
  • Loading branch information
svenklemm committed Nov 14, 2023
1 parent ecb4c21 commit 49121ae
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/ci_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,19 @@
# ABI_MIN is the minimum postgres version required when the extension was build against LATEST

PG13_EARLIEST = "13.2"
PG13_LATEST = "13.12"
PG13_LATEST = "13.13"
PG13_ABI_MIN = "13.5"

PG14_EARLIEST = "14.0"
PG14_LATEST = "14.9"
PG14_LATEST = "14.10"
PG14_ABI_MIN = "14.0"

PG15_EARLIEST = "15.0"
PG15_LATEST = "15.4"
PG15_LATEST = "15.5"
PG15_ABI_MIN = "15.0"

PG16_EARLIEST = "16.0"
PG16_LATEST = "16.0"
PG16_LATEST = "16.1"
PG16_ABI_MIN = "16.0"

PG_LATEST = [PG13_LATEST, PG14_LATEST, PG15_LATEST, PG16_LATEST]
4 changes: 2 additions & 2 deletions .github/workflows/update-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
pg: ${{ fromJson(needs.config.outputs.pg_latest) }}
# Should be removed after the first version for PG 16 is released
exclude:
- pg: "16.0"
- pg: "16.1"
fail-fast: false
env:
PG_VERSION: ${{ matrix.pg }}
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
pg: ${{ fromJson(needs.config.outputs.pg_latest) }}
# Should be removed after the first version for PG 16 is released
exclude:
- pg: "16.0"
- pg: "16.1"
fail-fast: false
env:
PG_VERSION: ${{ matrix.pg }}
Expand Down

0 comments on commit 49121ae

Please sign in to comment.