Skip to content

Commit ab5e29d

Browse files
authored
Merge pull request #375 from codeunia-dev/feat/supabase-disaster-recovery-system
ci: Upgrade PostgreSQL client to version 17 in backup workflow.
2 parents ce360de + 2275db5 commit ab5e29d

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/backup.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,14 @@ jobs:
1818
with:
1919
token: ${{ secrets.GITHUB_TOKEN }}
2020

21-
- name: Install PostgreSQL client tools
21+
- name: Install PostgreSQL 17 client tools
2222
run: |
23+
# Add PostgreSQL 17 repository
24+
sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list'
25+
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
2326
sudo apt-get update
24-
sudo apt-get install -y postgresql-client
27+
# Install PostgreSQL 17 client tools
28+
sudo apt-get install -y postgresql-client-17
2529
2630
- name: Verify tools installation
2731
run: |

0 commit comments

Comments
 (0)