From d95808f80893717fbd09c87800807a1f9d6bbadb Mon Sep 17 00:00:00 2001 From: Christopher Ferreira Date: Tue, 2 Jul 2024 16:12:20 +0100 Subject: [PATCH] chore: trying to add java setup prior to running sonar --- .github/workflows/main.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 0a1981f4..3cff6ef3 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -13,6 +13,12 @@ jobs: - name: Checkout project sources uses: actions/checkout@v4 + - name: Setup Java + uses: actions/setup-java@v4 + with: + distribution: 'temurin' + java-version: 11 + - name: Setup Gradle uses: gradle/actions/setup-gradle@db19848a5fa7950289d3668fb053140cf3028d43 with: