From 338b39fabcb2ebae2cca2e8361f4c2c0ca6ff2a9 Mon Sep 17 00:00:00 2001 From: meanmail Date: Thu, 25 Jan 2024 15:28:37 +0100 Subject: [PATCH] Change configuration key in Java version matrix In the Github workflow configuration, the Java version matrix's key was incorrectly set as "java". It has now been corrected to "version". Additionally, the string interpretation is removed from 'matrix.version' in the 'java-version' field to simplify the code syntax. --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3d46edcf..6665cab5 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -7,7 +7,7 @@ jobs: runs-on: [ self-hosted, small ] strategy: matrix: - java: + version: - 6 - 7 - 8 @@ -33,7 +33,7 @@ jobs: uses: actions/setup-java@v2 with: distribution: 'zulu' - java-version: "${{ matrix.version }}" + java-version: '${{ matrix.version }}' - name: Install Dependencies run: gradle resolveDependencies