Skip to content

Commit

Permalink
chore: update GitHub Actions Workflow to use JDK 11
Browse files Browse the repository at this point in the history
- Changed the setup of JDK in GitHub Actions workflow:
  - Updated Java version from 18.0.2+101 to 11.
  - Modified the 'Set up JDK 1.8' step to 'Set up' for clarity.

This update ensures that the CI pipeline runs with JDK 11.

See "Define the required toolchains" #526
  • Loading branch information
RalfBarkow committed Jun 7, 2024
1 parent 5fd0500 commit cc4e71c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/java-ci-with-maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Set up JDK 1.8
- name: Set up
uses: actions/setup-java@v4
with:
java-version: 18.0.2+101
java-version: 11
distribution: temurin
- name: Show Toolchain
run: cat ~/.m2/toolchains.xml
Expand All @@ -37,10 +37,10 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Set up JDK 1.8
- name: Set up
uses: actions/setup-java@v4
with:
java-version: 18.0.2+101
java-version: 11
distribution: temurin
- name: Show Toolchain
run: cat ~/.m2/toolchains.xml
Expand Down

0 comments on commit cc4e71c

Please sign in to comment.