From c757c6d246f0f1fc940f28f03feeb3623965319f Mon Sep 17 00:00:00 2001 From: Anton Romanov Date: Sun, 16 Feb 2025 21:29:26 +0400 Subject: [PATCH] Fix ci --- .gitea/workflows/test.yaml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index 3a19cb4..cbd3290 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -3,9 +3,13 @@ on: [push] jobs: container-test-job: runs-on: ubuntu-latest - container: - image: exoplatform/jdk:openjdk-21-ubuntu-2204 steps: - uses: actions/checkout@v4 + - name: Set up JDK 21 for x64 + uses: actions/setup-java@v4 + with: + java-version: '21' + distribution: 'temurin' + architecture: x64 - name: Test with Gradle run: bash ./gradlew test \ No newline at end of file