Skip to content

Commit 3f65095

Browse files
committed
Upgrade postgres version to 17 in test workflows
Signed-off-by: tdruez <[email protected]>
1 parent a0d9076 commit 3f65095

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/run-unit-tests-macos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ jobs:
3333
python-version: ${{ matrix.python-version }}
3434

3535
- name: Set up Python ${{ matrix.python-version }}
36-
uses: ikalnytskyi/action-setup-postgres@v7
36+
uses: ikalnytskyi/action-setup-postgres@v8
3737
id: postgres
3838
with:
39-
postgres-version: "14" # 13 is not supported.
39+
postgres-version: "17"
4040
database: ${{ env.POSTGRES_DB }}
4141
username: ${{ env.POSTGRES_USER }}
4242
password: ${{ env.POSTGRES_PASSWORD }}

.github/workflows/run-unit-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
services:
2424
postgres:
25-
image: postgres:13
25+
image: postgres:17
2626
env:
2727
POSTGRES_DB: ${{ env.POSTGRES_DB }}
2828
POSTGRES_USER: ${{ env.POSTGRES_USER }}

0 commit comments

Comments
 (0)