1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-11-21 20:45:10 +00:00

Merge pull request #639 from matthew16550/ci-temurin

Change GitHub Workflows to use "temurin" Java.
This commit is contained in:
arnaudroques 2021-08-30 09:46:36 +02:00 committed by GitHub
commit 550ff078a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -15,10 +15,10 @@ jobs:
uses: actions/checkout@v2
- name: Set up JDK 8
uses: actions/setup-java@v2.1.0
uses: actions/setup-java@v2.2.0
with:
java-version: 8
distribution: 'adopt'
distribution: 'temurin'
- name: Cache local Maven repository
uses: actions/cache@v2

View File

@ -28,10 +28,10 @@ jobs:
git config user.name 'github-actions[bot]'
- name: Setup Java
uses: actions/setup-java@v2.1.0
uses: actions/setup-java@v2.2.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.