Skip to content
This repository was archived by the owner on Aug 1, 2025. It is now read-only.

Commit 979e367

Browse files
Update docker-build.yml to use Java 21
1 parent 13b5e76 commit 979e367

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/docker-build.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,13 @@ jobs:
2323

2424
- run: git pull origin ${{steps.extract_branch.outputs.branch}}
2525

26-
- name: Set up JDK 8
27-
uses: actions/setup-java@v1.4.3
26+
- name: Set up JDK 21
27+
uses: actions/setup-java@v4
2828
with:
29-
java-version: 8
30-
29+
distribution: temurin
30+
java-version: '21'
31+
cache: maven
32+
3133
- name: Build with Maven
3234
run: mvn clean install
3335

0 commit comments

Comments
 (0)