Skip to content

Commit

Permalink
fixed pass in gh
Browse files Browse the repository at this point in the history
  • Loading branch information
priyanshi-yb committed Dec 26, 2024
1 parent e142457 commit 95872a5
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/misc-migtests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
postgres:
image: postgres:17
env:
POSTGRES_PASSWORD: secret
POSTGRES_PASSWORD: postgres
# Set health checks to wait until postgres has started
options: >-
--health-cmd pg_isready
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:

- name: Test PostgreSQL Connection
run: |
psql "postgresql://postgres:secret@127.0.0.1:5432/postgres" -c "SELECT version();"
psql "postgresql://postgres:postgres@127.0.0.1:5432/postgres" -c "SELECT version();"
- name: Create PostgreSQL user
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pg-13-migtests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
postgres:
image: postgres:13
env:
POSTGRES_PASSWORD: secret
POSTGRES_PASSWORD: postgres
# Set health checks to wait until postgres has started
options: >-
--health-cmd pg_isready
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:

- name: Test PostgreSQL Connection
run: |
psql "postgresql://postgres:secret@127.0.0.1:5432/postgres" -c "SELECT version();"
psql "postgresql://postgres:postgres@127.0.0.1:5432/postgres" -c "SELECT version();"
- name: Create PostgreSQL user
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pg-17-migtests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
postgres:
image: postgres:17
env:
POSTGRES_PASSWORD: secret
POSTGRES_PASSWORD: postgres
# Set health checks to wait until postgres has started
options: >-
--health-cmd pg_isready
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:

- name: Test PostgreSQL Connection
run: |
psql "postgresql://postgres:secret@127.0.0.1:5432/postgres" -c "SELECT version();"
psql "postgresql://postgres:postgres@127.0.0.1:5432/postgres" -c "SELECT version();"
- name: Create PostgreSQL user
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pg-9-migtests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
postgres:
image: postgres:9
env:
POSTGRES_PASSWORD: secret
POSTGRES_PASSWORD: postgres
# Set health checks to wait until postgres has started
options: >-
--health-cmd pg_isready
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:

- name: Test PostgreSQL Connection
run: |
psql "postgresql://postgres:secret@127.0.0.1:5432/postgres" -c "SELECT version();"
psql "postgresql://postgres:postgres@127.0.0.1:5432/postgres" -c "SELECT version();"
- name: Create PostgreSQL user
run: |
Expand Down

0 comments on commit 95872a5

Please sign in to comment.