From 30996e9fc9dbd0726ce37798b0814ca2a5a3ccfe Mon Sep 17 00:00:00 2001 From: Stefan Kalscheuer Date: Wed, 26 Oct 2022 10:14:11 +0200 Subject: [PATCH] ci: build and test with JDK 19 --- .drone.yml | 8 ++++---- .github/workflows/ci.yml | 2 +- CHANGELOG.md | 3 ++- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.drone.yml b/.drone.yml index cc57352..b69c48c 100644 --- a/.drone.yml +++ b/.drone.yml @@ -3,7 +3,7 @@ name: default steps: - name: compile - image: maven:3-openjdk-17 + image: maven:3-eclipse-temurin-17 commands: - mvn -B clean compile when: @@ -14,7 +14,7 @@ steps: - fix/* - release/* - name: unit-tests - image: maven:3-openjdk-17 + image: maven:3-eclipse-temurin-17 commands: - mvn -B test when: @@ -38,9 +38,9 @@ steps: - main - release/* - name: unit-integration-tests - image: maven:3-openjdk-17 + image: maven:3-eclipse-temurin-17 environment: - VAULT_VERSION: 1.11.2 + VAULT_VERSION: 1.12.0 commands: - export PATH=.bin:$${PATH} - mvn -B -P integration-test verify diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a3970ad..453c1e4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,7 +5,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - jdk: [ 11, 17, 18 ] + jdk: [ 11, 17, 19 ] vault: [ '1.2.0', '1.11.4', '1.12.0' ] include: - jdk: 17 diff --git a/CHANGELOG.md b/CHANGELOG.md index 86fc13e..b6d40f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,8 @@ ### Test * Tested against Vault 1.2.0 to 1.12.0 -* Disable AppID tests for Vault 1.12 and above (auth method removed) +* Disable AppID tests for Vault 1.12 and above (auth method removed) +* Tested with Java 19 ## 1.1.1 (2022-08-29)