This is an automated email from the ASF dual-hosted git repository. veithen pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/synapse.git
The following commit(s) were added to refs/heads/master by this push: new e5177fdb4 Update Java versions for Github Actions e5177fdb4 is described below commit e5177fdb4a0c5fe52da4dc0be423cbd6b57584c1 Author: Andreas Veithen <andreas.veit...@gmail.com> AuthorDate: Thu Jun 2 21:28:50 2022 +0000 Update Java versions for Github Actions - Use the latest Java 8 version. - Build with Java 11. --- .github/workflows/build_cron.yml | 2 +- .github/workflows/build_pull.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_cron.yml b/.github/workflows/build_cron.yml index 277f87611..7f6c5dda9 100644 --- a/.github/workflows/build_cron.yml +++ b/.github/workflows/build_cron.yml @@ -17,7 +17,7 @@ jobs: - name: Setup java 8 uses: actions/setup-java@v1 with: - java-version: 8.0.202 + java-version: 8 - name: Cache maven artifacts uses: actions/cache@v2 diff --git a/.github/workflows/build_pull.yml b/.github/workflows/build_pull.yml index 7ac0a687c..481794218 100644 --- a/.github/workflows/build_pull.yml +++ b/.github/workflows/build_pull.yml @@ -14,7 +14,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest] - java: [8.0.202] + java: [8, 11] steps: - uses: actions/checkout@v2