Skip to content

Commit e6877af

Browse files
modify unit testing workflow to set up JDK 8 with Temurin distribution
1 parent b5b9c18 commit e6877af

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/unit-testing.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ jobs:
1818
- name: Checkout Repository
1919
uses: actions/checkout@v4
2020

21-
- name: Set up JDK 9 (Zulu)
21+
- name: Set up JDK 8
2222
uses: actions/setup-java@v4
2323
with:
24-
distribution: 'zulu'
25-
java-version: '9'
24+
distribution: 'temurin'
25+
java-version: '8'
2626
cache: maven
2727

2828
- name: Run Tests and Generate JaCoCo Report

0 commit comments

Comments
 (0)