From 23e1d7cd934e5f273f78943300fd8bc6ca5d5362 Mon Sep 17 00:00:00 2001 From: Michael L Heuer Date: Sat, 16 Sep 2023 09:07:06 -0500 Subject: [PATCH] use jdk 17 for ci and deploy actions --- .github/workflows/ci.yml | 2 +- .github/workflows/deploy.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1b37984e..e1056692 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - java: [ '11', '17' ] + java: [ '17' ] name: JDK ${{ matrix.java }} steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 0cbd9b19..f07f04e8 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -13,7 +13,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-java@v2 with: - java-version: '11' + java-version: '17' distribution: 'temurin' server-id: sonatype-nexus-snapshots server-username: MAVEN_USERNAME