This is an automated email from the ASF dual-hosted git repository. fanningpj pushed a commit to branch java-11 in repository https://gitbox.apache.org/repos/asf/incubator-pekko-http-quickstart-java.g8.git
commit 59e24298b4a22a4911efeffde0d7a5d62c8f182c Author: PJ Fanning <[email protected]> AuthorDate: Sat Jan 13 12:51:29 2024 +0100 Use Java 11 in CI build --- .github/workflows/ci.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b2abd96..0dc0e1d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,10 +15,11 @@ jobs: - name: Checkout uses: actions/checkout@v4 - - name: Set up JDK 17 - uses: coursier/[email protected] + - name: Setup Java 11 + uses: actions/setup-java@v4 with: - jvm: temurin:1.17 + distribution: temurin + java-version: 11 - name: Cache Coursier cache uses: coursier/[email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
