diff --git a/.drone.yml b/.drone.yml index e3975e5..f320488 100644 --- a/.drone.yml +++ b/.drone.yml @@ -22,10 +22,10 @@ steps: --- kind: pipeline type: docker -name: java19 +name: java20 steps: - name: test - image: maven:3-eclipse-temurin-19 + image: maven:3-eclipse-temurin-20 commands: - mvn -B clean test diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 831298a..b13ddb0 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, 19 ] + jdk: [ 11, 17, 20 ] include: - jdk: 11 analysis: true @@ -27,7 +27,6 @@ jobs: mvn -B sonar:sonar -Dsonar.host.url=https://sonarcloud.io -Dsonar.organization=stklcode-github - -Dsonar.login=$SONAR_TOKEN env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} diff --git a/CHANGELOG.md b/CHANGELOG.md index a528a28..362315c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ All notable changes to this project will be documented in this file. ### Dependencies * Updated Jackson dependency to 2.14.2 +### Misc +* Tested with JDK 20 + ## 2.0.4 - 2022-11-21 ### Security