aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorAlexander Kriegisch <Alexander@Kriegisch.name>2022-03-07 11:33:06 +0700
committerAlexander Kriegisch <Alexander@Kriegisch.name>2022-03-07 12:40:52 +0700
commit99c4ebcc2d0cc936e0e56c5e3c53e061b2794e9b (patch)
treec8734866bd94d415c062c607bff7583b064d085f /.github
parenteef799dcced81dc6dc5e46b8ac24b7ee99ad764c (diff)
downloadaspectj-99c4ebcc2d0cc936e0e56c5e3c53e061b2794e9b.tar.gz
aspectj-99c4ebcc2d0cc936e0e56c5e3c53e061b2794e9b.zip
Bump actions/setup-java from 1 to 3, use Temurin, drop Java 14
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>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/maven.yml5
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index 3b2bdf199..4735a0b11 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -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: |