We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a57f52 commit f8234e5Copy full SHA for f8234e5
1 file changed
.github/workflows/gradle.yml
@@ -23,13 +23,21 @@ jobs:
23
services:
24
postgres:
25
image: postgres
26
+ env:
27
+ POSTGRES_USER: postgres_extensions
28
+ POSTGRES_PASSWORD: postgres_extensions
29
ports:
30
- 5432:5432
31
+ options: >-
32
+ --health-cmd pg_isready
33
+ --health-interval 10s
34
+ --health-timeout 5s
35
+ --health-retries 5
36
steps:
37
- name: "📥 Checkout repository"
- uses: actions/checkout@v4
38
+ uses: actions/checkout@v5
39
- name: "☕️ Setup JDK"
- uses: actions/setup-java@v4
40
+ uses: actions/setup-java@v5
41
with:
42
java-version: 17
43
distribution: liberica
0 commit comments