Skip to content

Commit

Permalink
update postgres 16.2 -> 16.4 in docker compose files, tests and workf…
Browse files Browse the repository at this point in the history
…lows
  • Loading branch information
dandelany committed Sep 4, 2024
1 parent 7478704 commit a6c28df
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pgcmp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
run: sudo curl -L https://github.com/hasura/graphql-engine/raw/stable/cli/get.sh | bash
- name: Start Postgres
run: |
sed -i 's/postgres:14.8/postgres:16.2/' docker-compose.yml
sed -i 's/postgres:14.8/postgres:16.4/' docker-compose.yml
docker compose up -d postgres hasura
docker images
docker ps -a
Expand Down Expand Up @@ -251,7 +251,7 @@ jobs:
sudo apt update
sudo apt -y install postgresql-client-16
- name: Start Postgres
run: docker run -d -p 5432:5432 -e POSTGRES_HOST_AUTH_METHOD=trust --name=postgres postgres:16.2
run: docker run -d -p 5432:5432 -e POSTGRES_HOST_AUTH_METHOD=trust --name=postgres postgres:16.4
- name: Sleep for 5 Seconds
run: sleep 5s
shell: bash
Expand Down Expand Up @@ -312,7 +312,7 @@ jobs:
sudo apt update
sudo apt -y install postgresql-client-16
- name: Start Postgres
run: docker run -d -p 5432:5432 -e POSTGRES_HOST_AUTH_METHOD=trust --name=postgres postgres:16.2
run: docker run -d -p 5432:5432 -e POSTGRES_HOST_AUTH_METHOD=trust --name=postgres postgres:16.4
- name: Sleep for 5 Seconds
run: sleep 5s
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion deployment/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ services:
SCHEDULER_DB_PASSWORD: "${SCHEDULER_PASSWORD}"
SEQUENCING_DB_USER: "${SEQUENCING_USERNAME}"
SEQUENCING_DB_PASSWORD: "${SEQUENCING_PASSWORD}"
image: postgres:16.2
image: postgres:16.4
ports: ["5432:5432"]
restart: always
volumes:
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ services:
SCHEDULER_DB_PASSWORD: "${SCHEDULER_PASSWORD}"
SEQUENCING_DB_USER: "${SEQUENCING_USERNAME}"
SEQUENCING_DB_PASSWORD: "${SEQUENCING_PASSWORD}"
image: postgres:16.2
image: postgres:16.4
ports: ["5432:5432"]
restart: always
volumes:
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.postgres
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
FROM postgres:16.2
FROM postgres:16.4
COPY deployment/postgres-init-db /docker-entrypoint-initdb.d
2 changes: 1 addition & 1 deletion e2e-tests/docker-compose-many-workers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ services:
SCHEDULER_DB_PASSWORD: "${SCHEDULER_PASSWORD}"
SEQUENCING_DB_USER: "${SEQUENCING_USERNAME}"
SEQUENCING_DB_PASSWORD: "${SEQUENCING_PASSWORD}"
image: postgres:16.2
image: postgres:16.4
ports: ["5432:5432"]
restart: always
volumes:
Expand Down
2 changes: 1 addition & 1 deletion e2e-tests/docker-compose-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ services:
SCHEDULER_DB_PASSWORD: "${SCHEDULER_PASSWORD}"
SEQUENCING_DB_USER: "${SEQUENCING_USERNAME}"
SEQUENCING_DB_PASSWORD: "${SEQUENCING_PASSWORD}"
image: postgres:16.2
image: postgres:16.4
ports: ['5432:5432']
restart: always
volumes:
Expand Down

0 comments on commit a6c28df

Please sign in to comment.