Skip to content

Commit

Permalink
Run github actions with java 11
Browse files Browse the repository at this point in the history
  • Loading branch information
fehnomenal committed Aug 16, 2021
1 parent 05d027b commit a5f0f82
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@ jobs:
runs-on: ubuntu-latest
steps:

# Setup Java 1.8 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: 8
java-version: 11

# Check out current repository
- name: Fetch Sources
Expand Down Expand Up @@ -90,12 +90,12 @@ jobs:
artifact: ${{ steps.properties.outputs.artifact }}
steps:

# Setup Java 1.8 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: 8
java-version: 11

# Check out current repository
- name: Fetch Sources
Expand Down Expand Up @@ -153,12 +153,12 @@ jobs:
runs-on: ubuntu-latest
steps:

# Setup Java 1.8 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: 8
java-version: 11

# Check out current repository
- name: Fetch Sources
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ jobs:
runs-on: ubuntu-latest
steps:

# Setup Java 1.8 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: 8
java-version: 11

# Check out current repository
- name: Fetch Sources
Expand All @@ -40,12 +40,12 @@ jobs:
runs-on: ubuntu-latest
steps:

# Setup Java 1.8 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: 8
java-version: 11

# Check out current repository
- name: Fetch Sources
Expand Down

0 comments on commit a5f0f82

Please sign in to comment.