Skip to content

Commit

Permalink
Bump Postgres version (#939)
Browse files Browse the repository at this point in the history
  • Loading branch information
JulianPasquale authored Dec 30, 2024
1 parent 8eca5b2 commit ee6750e
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
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
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

0 comments on commit ee6750e

Please sign in to comment.