From 571e96760c675fe33f50ebad4fdde4f3f2e1957f Mon Sep 17 00:00:00 2001 From: marko-bekhta Date: Fri, 25 Oct 2024 17:11:46 +0200 Subject: [PATCH] Use JDK 21 explicitly for report publishing since the publish job does not have a matrix --- .github/workflows/ci-report.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-report.yml b/.github/workflows/ci-report.yml index 3920750b01f..bf145573a04 100644 --- a/.github/workflows/ci-report.yml +++ b/.github/workflows/ci-report.yml @@ -24,10 +24,10 @@ jobs: with: persist-credentials: false ref: ${{ github.ref }} - - name: Set up Java ${{ matrix.os.java.version }} + - name: Set up Java 21 uses: actions/setup-java@v4 with: - java-version: ${{ matrix.os.java.version }} + java-version: 21 distribution: temurin # https://github.com/actions/cache/blob/main/examples.md#java---maven - name: Cache local Maven repository @@ -65,4 +65,4 @@ jobs: done exit $status env: - DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY_PR }} \ No newline at end of file + DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY_PR }}