Skip to content

Commit

Permalink
Fix Docker build on Java 21 (#815)
Browse files Browse the repository at this point in the history
  • Loading branch information
loicgreffier authored Dec 6, 2023
1 parent 2480940 commit 4dde4c5
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/continuous_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,13 @@ jobs:
with:
fetch-depth: 0

- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
cache: maven

- name: Docker
run: mvn package -P production -DskipTests jib:build -Djib.to.auth.username=$DOCKER_USER -Djib.to.auth.password=$DOCKER_TOKEN
env:
Expand Down

0 comments on commit 4dde4c5

Please sign in to comment.