Skip to content

Commit

Permalink
Revert Java 17 change in build and release actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin Brooks committed Nov 19, 2021
1 parent 13ef47d commit 61ec0f8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@ jobs:
- name: Fetch Sources
uses: actions/[email protected]

# Setup Java 17 environment for the next steps
# Setup Java 11 environment for the next steps
- name: Setup Java
uses: actions/setup-java@v2
with:
distribution: zulu
java-version: 17
java-version: 11
cache: gradle

# Set environment variables
Expand Down Expand Up @@ -106,12 +106,12 @@ jobs:
- name: Fetch Sources
uses: actions/[email protected]

# Setup Java 17 environment for the next steps
# Setup Java 11 environment for the next steps
- name: Setup Java
uses: actions/setup-java@v2
with:
distribution: zulu
java-version: 17
java-version: 11
cache: gradle

# Set environment variables
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ jobs:
with:
ref: ${{ github.event.release.tag_name }}

# Setup Java 17 environment for the next steps
# Setup Java 11 environment for the next steps
- name: Setup Java
uses: actions/setup-java@v2
with:
distribution: zulu
java-version: 17
java-version: 11
cache: gradle

# Update Unreleased section with the current release note
Expand Down

0 comments on commit 61ec0f8

Please sign in to comment.