Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
strategy:
matrix:
keycloak-version:
- '26.3.1'
- '26.3.2'
- '26.2.5'
- '26.1.4'
- '26.0.8'
Expand Down Expand Up @@ -89,10 +89,10 @@ jobs:
run: |
MOUNT_FEDERATION_EXAMPLE_VOLUME=""
EXTRA_FEATURES=""
if [[ "${{ matrix.keycloak-version }}" == "26.3.1" || "${{ matrix.keycloak-version }}" == "26.2.5" || "${{ matrix.keycloak-version }}" == "26.1.4" || "${{ matrix.keycloak-version }}" == "26.0.8" || "${{ matrix.keycloak-version }}" == "25.0.6" ]]; then
if [[ "${{ matrix.keycloak-version }}" == "26.3.2" || "${{ matrix.keycloak-version }}" == "26.2.5" || "${{ matrix.keycloak-version }}" == "26.1.4" || "${{ matrix.keycloak-version }}" == "26.0.8" || "${{ matrix.keycloak-version }}" == "25.0.6" ]]; then
MOUNT_FEDERATION_EXAMPLE_VOLUME="-v $PWD/custom-user-federation-example/build/libs/custom-user-federation-example-all.jar:/opt/keycloak/providers/custom-user-federation-example-all.jar:z"
fi
if [[ "${{ matrix.keycloak-version }}" == "26.3.1" || "${{ matrix.keycloak-version }}" == "26.2.5" ]]; then
if [[ "${{ matrix.keycloak-version }}" == "26.3.2" || "${{ matrix.keycloak-version }}" == "26.2.5" ]]; then
EXTRA_FEATURES=",admin-fine-grained-authz:v1"
fi

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ This provider will officially support the latest three major versions of Keycloa

The following versions are used when running acceptance tests in CI:

- 26.3.1 (latest)
- 26.3.2 (latest)
- 26.2.5
- 26.1.4
- 26.0.8
Expand Down
2 changes: 1 addition & 1 deletion custom-user-federation-example/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

ext {
keycloakVersion = '26.3.1'
keycloakVersion = '26.3.2'
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ services:
environment:
LDAP_PORT_NUMBER: 389
keycloak:
image: quay.io/keycloak/keycloak:26.3.1
image: quay.io/keycloak/keycloak:26.3.2
command: --verbose start-dev
depends_on:
- postgres
Expand Down
Loading