From 788cf3b91ef623845285577f0bda8429a25ed975 Mon Sep 17 00:00:00 2001 From: Anton Sviridov Date: Sat, 23 Aug 2025 13:44:55 +0100 Subject: [PATCH] Explicitly setup Gradle 8 for Java 8 compatibility --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f2a0b009..22ff646a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,6 +26,11 @@ jobs: - uses: sbt/setup-sbt@v1 + - name: Setup Gradle 8.10 + uses: gradle/actions/setup-gradle@v4 + with: + gradle-version: '8.10' + - name: Main project tests run: sbt test