We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ce360de + 2275db5 commit ab5e29dCopy full SHA for ab5e29d
.github/workflows/backup.yml
@@ -18,10 +18,14 @@ jobs:
18
with:
19
token: ${{ secrets.GITHUB_TOKEN }}
20
21
- - name: Install PostgreSQL client tools
+ - name: Install PostgreSQL 17 client tools
22
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 -
26
sudo apt-get update
- sudo apt-get install -y postgresql-client
27
+ # Install PostgreSQL 17 client tools
28
+ sudo apt-get install -y postgresql-client-17
29
30
- name: Verify tools installation
31
0 commit comments