Skip to content

Commit 0bcfd42

Browse files
committed
fix checks
1 parent 804f92b commit 0bcfd42

File tree

1 file changed

+12
-9
lines changed

1 file changed

+12
-9
lines changed

.github/workflows/checks.yml

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,19 @@ jobs:
1212
- ubuntu-latest
1313
runs-on: '${{ matrix.os }}'
1414
steps:
15-
- name: Checkout
15+
- name: Checkout Repository
1616
uses: actions/checkout@v4
17-
- name: Wrapper Validation
18-
uses: gradle/actions/wrapper-validation@v3
19-
- name: Setup JDK
17+
with:
18+
persist-credentials: false
19+
20+
- name: Set up Gradle
21+
uses: gradle/actions/setup-gradle@v4
22+
23+
- name: Set up Java
2024
uses: actions/setup-java@v4
2125
with:
26+
distribution: 'temurin'
2227
java-version: 21
23-
distribution: adopt
24-
- name: Build
25-
run: |
26-
chmod +x ./gradlew
27-
./gradlew build
28+
29+
- name: Build with Gradle
30+
run: ./gradlew build

0 commit comments

Comments
 (0)