Skip to content

Commit

Permalink
Change JDK to Zulu 11
Browse files Browse the repository at this point in the history
  • Loading branch information
ancavar committed Aug 25, 2024
1 parent af2b1e5 commit c886326
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/simple-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:

# Runs a single command using the runners shell
- name: Setup Java JDK
uses: actions/setup-java@v4
uses: actions/setup-java@v3.5.0
with:
distribution: 'oracle'
java-version: '21'
distribution: 'zulu'
java-version: '11'
cache: "gradle"

# Runs a set of commands using the runners shell
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class SequentialPathSelector<State>(

override fun peek(): State {
if (totalSteps == stepsToSwitch) {
selectors.removeFirst()
selectors.drop(1)
currentSelector = selectors.first()
}
return currentSelector.peek()
Expand Down

0 comments on commit c886326

Please sign in to comment.