Skip to content

Commit

Permalink
sudo removal of postgresql 14
Browse files Browse the repository at this point in the history
  • Loading branch information
TangoYankee committed Apr 5, 2024
1 parent e05ab4a commit 7cf9423
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/test_update_api_database.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,14 +58,15 @@ jobs:
sudo apt-get install -y software-properties-common
- name: Remove postgres 14
run: apt-get remove postgresql-14
run: sudo apt-get remove postgresql-14

- name: Install postgres-client-15
run: |
sudo sh -c 'echo "deb https://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list'
sudo wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
sudo apt-get update
sudo apt-get install -y postgresql postgresql-client-15
- name: Check postgres install
run: pg_dump --version

Expand Down

0 comments on commit 7cf9423

Please sign in to comment.