Skip to content

Commit

Permalink
Setup Java 11 on Windows.
Browse files Browse the repository at this point in the history
  • Loading branch information
fniephaus committed Oct 16, 2023
1 parent a170f39 commit 0efbd18
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/actions/prepare-environment/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@ inputs:
runs:
using: "composite"
steps:
- name: "🔧 Setup Java 11"
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '11'
if: runner.os == 'Windows'
- name: "🔧 Install GraalVM (JDK${{ inputs.java-version }})"
uses: graalvm/setup-graalvm@main
with:
Expand Down

0 comments on commit 0efbd18

Please sign in to comment.