From 233dd680f8b275d775d5e936f315bd97a10bc443 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johan=20Andr=C3=A9n?= Date: Wed, 8 Nov 2023 12:59:25 +0100 Subject: [PATCH] build: Add JDK 21 to nightly CI build --- .github/workflows/nightly.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 22c155dc95..6bf93bebc6 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -24,6 +24,9 @@ jobs: - JDK_VERSION: 1.17 JVM_NAME: temurin:1.17 extraOpts: '' + - JDK_VERSION: 1.21 + JVM_NAME: temurin:1.21 + extraOpts: '' AKKA_VERSION: [main, default, snapshot] steps: @@ -35,10 +38,12 @@ jobs: - name: Cache Coursier cache uses: coursier/cache-action@v6.4.0 - - name: Set up JDK ${{ matrix.JDK_VERSION }} - uses: coursier/setup-action@v1.3.0 + - name: Set up JDK ${{ matrix.jdkVersion }} + uses: coursier/setup-action@v1.3.4 with: - jvm: ${{ matrix.JVM_NAME }} + jvm: ${{ matrix.jvmName }} + # FIXME default index not giving us access to JDK 21 (yet) + jvm-index: https://raw.githubusercontent.com/coursier/jvm-index/32d659500e6c65efb9eee91718a0fb0e797ad4ee/index.json - name: Cache Build Target uses: actions/cache@v3.0.11