Skip to content

Commit

Permalink
31 update Java to 21 and update docker compose version to reflect Key…
Browse files Browse the repository at this point in the history
…cloak version
  • Loading branch information
robson90 committed Dec 11, 2024
1 parent 8db2f22 commit ec58209
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ jobs:
node-version: lts/*
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Set up JDK 17
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: 'temurin' # See 'Supported distributions' for available options
java-version: '17'
java-version: '21'
cache: maven
- name: Build project with Maven
run: mvn -B clean verify
2 changes: 1 addition & 1 deletion docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
keycloak:
image: quay.io/keycloak/keycloak:23.0.4
image: quay.io/keycloak/keycloak:26.0.7
container_name: keycloak
entrypoint: [ "/opt/keycloak/bin/kc.sh", "start-dev", "--import-realm"]
environment:
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<maven.compiler.release>17</maven.compiler.release>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<maven.compiler.release>21</maven.compiler.release>

<version.keycloak>26.0.7</version.keycloak>
<version.maven.plugins>3.5.2</version.maven.plugins>
Expand Down

0 comments on commit ec58209

Please sign in to comment.