1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-06-06 02:10:53 +00:00

Change GitHub Workflows to use "temurin" Java.

(Docs for https://github.com/actions/setup-java were changed a few days ago to warn that "adopt" Java won't be updated anymore)
This commit is contained in:
matthew16550 2021-08-30 15:49:55 +10:00
parent e71791dade
commit f3226a1fa7
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ jobs:
uses: actions/setup-java@v2.1.0
with:
java-version: 8
distribution: 'adopt'
distribution: 'temurin'
- name: Cache local Maven repository
uses: actions/cache@v2

View File

@ -31,7 +31,7 @@ jobs:
uses: actions/setup-java@v2.1.0
with:
java-version: 8
distribution: 'adopt'
distribution: 'temurin'
# If this run stores a new cache then the next run will not be able to use it because this is a tag checkout :-(
# But a cache already created on the default branch (by the CI workflow) will be loaded here.