]> source.dussan.org Git - aspectj.git/commitdiff
Bump actions/setup-java from 1 to 3, use Temurin, drop Java 14
authorAlexander Kriegisch <Alexander@Kriegisch.name>
Mon, 7 Mar 2022 04:33:06 +0000 (11:33 +0700)
committerAlexander Kriegisch <Alexander@Kriegisch.name>
Mon, 7 Mar 2022 05:40:52 +0000 (12:40 +0700)
Adopt OpenJDK moved to Eclipse Temurin and is no longer updated. Temurin
builds for JDK 14 are however not available. Therefore, we drop the JDK
14 CI build.

Bumps [actions/setup-java](https://github.com/actions/setup-java) from 1 to 3.
- [Release notes](https://github.com/actions/setup-java/releases)
- [Commits](https://github.com/actions/setup-java/compare/v1...v3)

---
updated-dependencies:
- dependency-name: actions/setup-java
- dependency-type: direct:production
- update-type: version-update:semver-major

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
.github/workflows/maven.yml

index 3b2bdf199a4bb4f08c4ecbc967f916b3133349c3..4735a0b11d3684d70234eb131fe0fec752600bca 100644 (file)
@@ -19,7 +19,7 @@ jobs:
     strategy:
       fail-fast: false
       matrix:
-        java: [ 11, 14, 17 ]
+        java: [ 11, 17 ]
 
     runs-on: ubuntu-latest
 
@@ -27,9 +27,10 @@ jobs:
       - uses: actions/checkout@v2
 
       - name: Set up JDK ${{ matrix.java }}
-        uses: actions/setup-java@v1
+        uses: actions/setup-java@v3
         with:
           java-version: ${{ matrix.java }}
+          distribution: temurin
 
       - name: Print tool versions
         run: |