This is an automated email from the ASF dual-hosted git repository.

pottlinger pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/creadur-tentacles.git


The following commit(s) were added to refs/heads/master by this push:
     new 20afd4a  Use LTS java and switch to temurin to receive updates
20afd4a is described below

commit 20afd4a0ebcbfb018ac37183206933a660575552
Author: P. Ottlinger <[email protected]>
AuthorDate: Sun Jul 21 21:00:35 2024 +0200

    Use LTS java and switch to temurin to receive updates
---
 .github/workflows/maven.yml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index d2a46ee..05e1426 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -29,7 +29,7 @@ jobs:
     strategy:
       matrix:
         os: [ubuntu-latest, windows-latest]
-        java: [8, 11, 15, 16, 17]
+        java: [8, 11, 17, 21]
       fail-fast: false
 
     runs-on: ${{ matrix.os }}
@@ -39,7 +39,7 @@ jobs:
         uses: actions/checkout@v4
 
       - name: Configura artifact caching
-        uses: actions/[email protected]
+        uses: actions/cache@v4
         with:
           path: ~/.m2/repository
           key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
@@ -47,9 +47,9 @@ jobs:
             ${{ runner.os }}-maven-
 
       - name: Set up JDK
-        uses: actions/[email protected]
+        uses: actions/setup-java@v4
         with:
-          distribution: adopt
+          distribution: temurin
           java-version: ${{ matrix.java }}
           cache: 'maven'
 

Reply via email to