From 89bc6f9daa1fd1c756e2f7b03c9ce03ad8cee67b Mon Sep 17 00:00:00 2001 From: Adam Retter Date: Sun, 19 Mar 2023 19:52:32 +0100 Subject: [PATCH 1/2] [feature] Test against the version of Java for eXist-db 6.x.x (Java 8), and eXist-db 7.x.x (Java 17) --- .github/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7ae662e8..17cabae2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,15 +6,16 @@ jobs: strategy: fail-fast: true matrix: - jdk: ['8', '11'] + jdk: ['8', '17'] os: [ubuntu-latest] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2 - name: Set up JDK ${{ matrix.jdk }} - uses: actions/setup-java@v1 + uses: actions/setup-java@v3 with: java-version: ${{ matrix.jdk }} + distribution: 'temurin' - name: Cache Maven packages uses: actions/cache@v2 with: From 36ae30f2034bd265ec080358c8d355da84bdc490 Mon Sep 17 00:00:00 2001 From: Adam Retter Date: Sun, 19 Mar 2023 19:53:45 +0100 Subject: [PATCH 2/2] [feature] Update GitHub Actions Plugins versions --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 17cabae2..53eb53fe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,14 +10,14 @@ jobs: os: [ubuntu-latest] runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Set up JDK ${{ matrix.jdk }} uses: actions/setup-java@v3 with: java-version: ${{ matrix.jdk }} distribution: 'temurin' - name: Cache Maven packages - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}