From d47eecce31e3e0c66c59f56800ff89018171bace Mon Sep 17 00:00:00 2001 From: Thomas Darimont Date: Tue, 7 Jan 2025 12:40:04 +0100 Subject: [PATCH] Pin ubuntu version to ubuntu-22.04 Workaround for CI fails because ubuntu-latest version is 24.04 which doesn't support python 3.7. --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 6f7c55d37..23ce5296f 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -251,7 +251,7 @@ jobs: run: ./mvnw ${MAVEN_CLI_OPTS} -Dkeycloak.version=${{ matrix.env.KEYCLOAK_VERSION }} -Dkeycloak.client.version=${{ matrix.env.KEYCLOAK_CLIENT_VERSION }} -Dkeycloak.dockerTagSuffix="-legacy" ${ADJUSTED_RESTEASY_VERSION} clean verify ${COMPATIBILITY_PROFILE} lint-other-files: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 timeout-minutes: 10 steps: - uses: actions/checkout@v4.2.2