Skip to content

Commit

Permalink
Correct Postgres version in dev and CI
Browse files Browse the repository at this point in the history
LMS's staging and production environments use Postgres 15.5 not 15.6.
  • Loading branch information
seanh committed Jun 25, 2024
1 parent 4c58c04 commit bd68070
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .cookiecutter/cookiecutter.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"postgres": "yes",
"docker": "yes",
"__postgres_port": "5433",
"__postgres_version": "15.6-alpine",
"__postgres_version": "15.5-alpine",
"__docker_namespace": "hypothesis",
"__docker_network": "lms_default",
"__github_url": "https://github.com/hypothesis/lms",
Expand Down
2 changes: 1 addition & 1 deletion .cookiecutter/includes/.github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ BDD_Tests:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:15.6-alpine
image: postgres:15.5-alpine
ports:
- 5433:5432
env:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
runs-on: ubuntu-latest-32-cores
services:
postgres:
image: postgres:15.6-alpine
image: postgres:15.5-alpine
ports:
- 5433:5432
env:
Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:15.6-alpine
image: postgres:15.5-alpine
ports:
- 5433:5432
env:
Expand Down Expand Up @@ -179,7 +179,7 @@ jobs:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:15.6-alpine
image: postgres:15.5-alpine
ports:
- 5433:5432
env:
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
postgres:
image: postgres:15.6-alpine
image: postgres:15.5-alpine
ports:
- "127.0.0.1:5433:5432"
healthcheck:
Expand Down

0 comments on commit bd68070

Please sign in to comment.