From 4c8ad9fa24b3877d1a70e3830bbcba7316b8b9ed Mon Sep 17 00:00:00 2001 From: Marthym Date: Sun, 29 Oct 2023 13:28:54 +0100 Subject: [PATCH] chore(ci): #182 upgrade github action for java 21 --- .github/workflows/build.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 93d4c31e..593082fc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,16 +16,16 @@ jobs: name: analyse runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3.0.0 + - uses: actions/checkout@v4.1.1 with: fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis - - name: Set up JDK 17 - uses: actions/setup-java@v3.9.0 + - name: Set up JDK 21 + uses: actions/setup-java@v3.13.0 with: - java-version: 17 + java-version: 21 distribution: 'temurin' - name: Cache Maven packages - uses: actions/cache@v3.0.11 + uses: actions/cache@v3.3.2 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}