Skip to content
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
10 changes: 5 additions & 5 deletions .github/workflows/neon-before-after-validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,11 @@ jobs:
with:
fetch-depth: 1

- name: Set up PostgreSQL client
uses: shogo82148/actions-setup-postgres@v1
with:
postgres-version: 16
postgres-password: 'ephemeral'
- name: Install PostgreSQL client
run: |
sudo apt-get update -qq
sudo apt-get install -y -qq postgresql-client >/dev/null
psql --version

- name: Set branch name
id: branch-name
Expand Down
20 changes: 10 additions & 10 deletions workflows/db-health-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Set up PostgreSQL client
uses: shogo82148/actions-setup-postgres@v1
with:
postgres-version: 16
postgres-password: ${{ secrets.PGPASSWORD }}
- name: Install PostgreSQL client
run: |
sudo apt-get update -qq
sudo apt-get install -y -qq postgresql-client >/dev/null
psql --version

- name: Install pgFirstAid
run: |
Expand Down Expand Up @@ -173,11 +173,11 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Set up PostgreSQL client
uses: shogo82148/actions-setup-postgres@v1
with:
postgres-version: 16
postgres-password: ${{ secrets.PGPASSWORD }}
- name: Install PostgreSQL client
run: |
sudo apt-get update -qq
sudo apt-get install -y -qq postgresql-client >/dev/null
psql --version

- name: Install pgFirstAid
run: |
Expand Down
30 changes: 15 additions & 15 deletions workflows/managed-db-validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,11 @@ jobs:
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: ${{ inputs.region }}

- name: Set up PostgreSQL client
uses: shogo82148/actions-setup-postgres@v1
with:
postgres-version: 16
postgres-password: ${{ secrets.AWS_RDS_PASSWORD }}
- name: Install PostgreSQL client
run: |
sudo apt-get update -qq
sudo apt-get install -y -qq postgresql-client >/dev/null
psql --version

- name: Resolve RDS Endpoint
id: rds-endpoint
Expand Down Expand Up @@ -215,11 +215,11 @@ jobs:
with:
project_id: ${{ secrets.GCP_PROJECT_ID }}

- name: Set up PostgreSQL client
uses: shogo82148/actions-setup-postgres@v1
with:
postgres-version: 16
postgres-password: ${{ secrets.GCP_CLOUD_SQL_PASSWORD }}
- name: Install PostgreSQL client
run: |
sudo apt-get update -qq
sudo apt-get install -y -qq postgresql-client >/dev/null
psql --version

- name: Resolve Cloud SQL Endpoint
id: cloudsql-endpoint
Expand Down Expand Up @@ -360,11 +360,11 @@ jobs:
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}

- name: Set up PostgreSQL client
uses: shogo82148/actions-setup-postgres@v1
with:
postgres-version: 16
postgres-password: ${{ secrets.AZURE_POSTGRESQL_PASSWORD }}
- name: Install PostgreSQL client
run: |
sudo apt-get update -qq
sudo apt-get install -y -qq postgresql-client >/dev/null
psql --version

- name: Resolve Azure PostgreSQL Endpoint
id: azure-endpoint
Expand Down
10 changes: 5 additions & 5 deletions workflows/neon-before-after-validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,11 @@ jobs:
with:
fetch-depth: 1

- name: Set up PostgreSQL client
uses: shogo82148/actions-setup-postgres@v1
with:
postgres-version: 16
postgres-password: 'ephemeral'
- name: Install PostgreSQL client
run: |
sudo apt-get update -qq
sudo apt-get install -y -qq postgresql-client >/dev/null
psql --version

- name: Set branch name
id: branch-name
Expand Down
20 changes: 10 additions & 10 deletions workflows/pre-post-migration-validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ jobs:
timeout-minutes: 15

steps:
- name: Set up PostgreSQL client
uses: shogo82148/actions-setup-postgres@v1
with:
postgres-version: 16
postgres-password: ${{ secrets.PGPASSWORD }}
- name: Install PostgreSQL client
run: |
sudo apt-get update -qq
sudo apt-get install -y -qq postgresql-client >/dev/null
psql --version

- name: Checkout code
uses: actions/checkout@v4
Expand Down Expand Up @@ -159,11 +159,11 @@ jobs:
timeout-minutes: 15

steps:
- name: Set up PostgreSQL client
uses: shogo82148/actions-setup-postgres@v1
with:
postgres-version: 16
postgres-password: ${{ secrets.PGPASSWORD }}
- name: Install PostgreSQL client
run: |
sudo apt-get update -qq
sudo apt-get install -y -qq postgresql-client >/dev/null
psql --version

- name: Checkout code
uses: actions/checkout@v4
Expand Down
Loading