Skip to content

Commit 5717c7d

Browse files
Update unit testing workflow: change JDK setup to version 8 with Temurin distribution and enable Maven caching.
1 parent 2e75436 commit 5717c7d

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/unit-testing.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,12 @@ jobs:
1515
- name: Checkout repository
1616
uses: actions/checkout@v4
1717

18-
- name: Set up JDK 9
18+
- name: Set up JDK 8 (Temurin)
1919
uses: actions/setup-java@v4
2020
with:
21-
java-version: '9'
22-
distribution: 'zulu'
21+
distribution: 'temurin'
22+
java-version: '8'
23+
cache: maven
2324

2425
- name: Enable tests in pom.xml
2526
run: |

0 commit comments

Comments
 (0)