diff --git a/.github/workflows/nightly-builds-aeron.yml b/.github/workflows/nightly-builds-aeron.yml index ae0ade3159..47f80862b8 100644 --- a/.github/workflows/nightly-builds-aeron.yml +++ b/.github/workflows/nightly-builds-aeron.yml @@ -1,6 +1,7 @@ name: Nightly Aeron Tests on: + pull_request: schedule: - cron: "0 0 * * *" workflow_dispatch: @@ -27,11 +28,11 @@ jobs: fetch-depth: 0 fetch-tags: true - - name: Setup Java 11 + - name: Setup Java 23 uses: actions/setup-java@v4 with: distribution: temurin - java-version: 11 + java-version: 23 - name: Cache Coursier cache uses: coursier/cache-action@v6 diff --git a/.github/workflows/nightly-builds.yml b/.github/workflows/nightly-builds.yml index f04e9b80e3..455ca8c186 100644 --- a/.github/workflows/nightly-builds.yml +++ b/.github/workflows/nightly-builds.yml @@ -1,6 +1,7 @@ name: Nightly Builds on: + pull_request: schedule: - cron: "0 0 * * *" workflow_dispatch: @@ -117,7 +118,8 @@ jobs: # binary version is required and Pekko build will set the right # full version from it. scalaVersion: ["2.12.x", "2.13.x", "3.3.x"] - javaVersion: [8, 11, 17, 21] + # temp remove 8, 11, 17, 21 + javaVersion: [23] env: DEVELOCITY_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }} steps: