Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump Postgres version #939

Merged
merged 2 commits into from
Dec 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:

services:
db:
image: postgres:15
image: postgres:16
env:
POSTGRES_USER: postgres
POSTGRES_HOST_AUTH_METHOD: trust
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update_knapsack_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

services:
db:
image: postgres:15
image: postgres:16
env:
POSTGRES_USER: postgres
POSTGRES_HOST_AUTH_METHOD: trust
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ services:
- db:db
- chrome-server:chrome-server
db:
image: postgres:15
image: postgres:16
environment:
POSTGRES_USER: postgres
POSTGRES_HOST_AUTH_METHOD: trust
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ services:
retries: 3
start_period: 40s
db:
image: postgres:15
image: postgres:16
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I guess we should change it in all these places:
image

.github/workflows/ci.yml
.github/workflows/update_knapsack_report.yml
docker-compose.test.yml
docker-compose.yml
docs/docker.md

environment:
POSTGRES_USER: postgres
POSTGRES_HOST_AUTH_METHOD: trust
Expand Down
2 changes: 1 addition & 1 deletion docs/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ Setup steps:
docker network create rails_api_base_test_network

# Run a Postgres server in the network
docker run --name db -p 5432:5432 -e POSTGRES_USER=postgres -e POSTGRES_HOST_AUTH_METHOD=trust --network=rails_api_base_test_network postgres:15
docker run --name db -p 5432:5432 -e POSTGRES_USER=postgres -e POSTGRES_HOST_AUTH_METHOD=trust --network=rails_api_base_test_network postgres:16

# Run a Chromium server for the capybara e2e tests
docker run --name chrome-server -p 4444:4444 --network=rails_api_base_test_network seleniarm/standalone-chromium
Expand Down
Loading