Skip to content

Commit 2275db5

Browse files
committed
ci: Upgrade PostgreSQL client to version 17 in backup workflow.
1 parent 424a2ab commit 2275db5

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

.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)