Skip to content

Commit

Permalink
Upgrade postgres service to version 16 (#58)
Browse files Browse the repository at this point in the history
Ensures that the postgres version used by docker-compose locally as well
as during CI runs is up to date.
  • Loading branch information
a-musing-moose committed May 15, 2024
2 parents 87e31fb + 9778236 commit e881d54
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/startproject.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

services:
postgres:
image: postgres:14
image: postgres:16
env:
POSTGRES_USER: dev
POSTGRES_PASSWORD: dev_password
Expand Down
6 changes: 3 additions & 3 deletions template/.github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:

services:
postgres:
image: postgres:14
image: postgres:16
env:
POSTGRES_USER: dev
POSTGRES_PASSWORD: dev_password
Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:

services:
postgres:
image: postgres:14
image: postgres:16
env:
POSTGRES_USER: dev
POSTGRES_PASSWORD: dev_password
Expand Down Expand Up @@ -178,7 +178,7 @@ jobs:

services:
postgres:
image: postgres:14
image: postgres:16
env:
POSTGRES_USER: dev
POSTGRES_PASSWORD: dev_password
Expand Down
2 changes: 1 addition & 1 deletion template/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "3"

services:
db:
image: postgres:14
image: postgres:16
ports:
- 5432:5432
environment:
Expand Down

0 comments on commit e881d54

Please sign in to comment.