Skip to content

Commit

Permalink
Update GitHub Actions to use JDK 20
Browse files Browse the repository at this point in the history
  • Loading branch information
freyacodes committed Oct 2, 2023
1 parent 5811312 commit 90d4167
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docs-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Set up JDK 19
- name: Set up JDK 20
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 19
java-version: 20

- name: Publish docs with Gradle
run: gradle gitPublishPush
8 changes: 4 additions & 4 deletions .github/workflows/github-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ jobs:
- run: export GRADLE_USER_HOME=`pwd`/.gradle
- run: echo "name=RELEASE_TAG::${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
- uses: actions/checkout@v3
- name: Setup Java JDK 19
- name: Setup Java JDK 20
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 19
java-version: 20
- name: Build with Gradle
uses: gradle/gradle-build-action@v2
with:
Expand All @@ -45,11 +45,11 @@ jobs:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up JDK 17
- name: Set up JDK 20
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 19
java-version: 20
- name: Build with Gradle
uses: gradle/gradle-build-action@v2
with:
Expand Down

0 comments on commit 90d4167

Please sign in to comment.