Skip to content

Commit

Permalink
Use Java 11 for builds
Browse files Browse the repository at this point in the history
  • Loading branch information
ShikaSD committed Nov 16, 2021
1 parent 6dc85ef commit 7aa6ea7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ jobs:

steps:
- uses: actions/checkout@v1
- name: set up JDK 1.8
uses: actions/setup-java@v1
- name: set up JDK
uses: actions/setup-java@v2
with:
java-version: 1.8
java-version: 11
- name: Build with Gradle
run: ./gradlew build test
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up JDK 1.8
uses: actions/setup-java@v1
- name: Set up JDK
uses: actions/setup-java@v2
with:
java-version: 1.8
java-version: 11
- name: Build with Gradle
run: ./gradlew publishPlugins -Pgradle.publish.key=${{ secrets.GRADLE_PUBLISH_KEY }} -Pgradle.publish.secret=${{ secrets.GRADLE_PUBLISH_SECRET }}

0 comments on commit 7aa6ea7

Please sign in to comment.