Skip to content

Commit

Permalink
feat: support keycloak 24.
Browse files Browse the repository at this point in the history
  • Loading branch information
desaintmartin committed Oct 10, 2024
1 parent 206baba commit 6837252
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 5 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/verify.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Maven Verify
on:
pull_request: null
jobs:
verify:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
java-version: '21'
distribution: 'adopt'
- name: Verify
run: mvn --batch-mode verify
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM maven:3.9.5-eclipse-temurin-17 AS build
FROM maven:3.9.9-eclipse-temurin-21 AS build

WORKDIR /home/app/src

Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@
<artifactId>actions-token</artifactId>
<groupId>io.wiremind.keycloak.actionstoken</groupId>
<packaging>jar</packaging>
<version>0.0.8</version>
<version>0.0.9</version>

<properties>
<java.version>17</java.version>
<keycloak.version>22.0.5</keycloak.version>
<keycloak.version>24.0.0</keycloak.version>
<version.compiler.maven.plugin>3.8.1</version.compiler.maven.plugin>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<gson.version>2.10.1</gson.version>
</properties>

Expand Down

0 comments on commit 6837252

Please sign in to comment.