Skip to content

Commit f5fb29b

Browse files
committed
ci: fix pg client install
1 parent 7e67393 commit f5fb29b

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/gradle.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,11 @@ jobs:
3636
--health-retries 5
3737
steps:
3838
- name: Install psql client
39-
run: sudo apt-get update && sudo apt-get install -y postgresql-client
39+
env:
40+
DEBIAN_FRONTEND: noninteractive
41+
run: |
42+
apt-get update
43+
apt-get install -y --no-install-recommends postgresql-client
4044
- name: Create extensions
4145
env:
4246
PGPASSWORD: postgres_extensions

0 commit comments

Comments
 (0)