From 5e5143168e104eda8fe784525f66a77c84c81752 Mon Sep 17 00:00:00 2001 From: Stefan Kalscheuer Date: Sun, 15 Oct 2023 17:10:22 +0200 Subject: [PATCH] ci: build and test with JDK 21 --- .drone.yml | 6 +++--- .github/workflows/ci.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.drone.yml b/.drone.yml index 6d9e01a..226a505 100644 --- a/.drone.yml +++ b/.drone.yml @@ -3,7 +3,7 @@ name: default steps: - name: compile - image: maven:3-eclipse-temurin-17 + image: maven:3-eclipse-temurin-21 commands: - mvn -B clean compile when: @@ -14,7 +14,7 @@ steps: - fix/* - release/* - name: unit-tests - image: maven:3-eclipse-temurin-17 + image: maven:3-eclipse-temurin-21 commands: - mvn -B test when: @@ -38,7 +38,7 @@ steps: - main - release/* - name: unit-integration-tests - image: maven:3-eclipse-temurin-17 + image: maven:3-eclipse-temurin-21 environment: VAULT_VERSION: 1.15.0 commands: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index afe64ea..a6fd050 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, 20 ] + jdk: [ 11, 17, 21 ] vault: [ '1.2.0', '1.11.12', '1.15.0' ] include: - jdk: 17