Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump actions/setup-java from 1 to 3 #343

Merged
merged 3 commits into from Aug 15, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/build.yml
Expand Up @@ -20,9 +20,10 @@ jobs:
with:
fetch-depth: 2
- name: Set up JDK
uses: actions/setup-java@v1
uses: actions/setup-java@v3
with:
java-version: '1.8'
java-version: '8'
distribution: 'temurin'
- name: Build with Maven
run: .github/scripts/build.sh
- name: Code coverage report
Expand Down
10 changes: 6 additions & 4 deletions .github/workflows/release.yml
Expand Up @@ -20,9 +20,10 @@ jobs:
with:
fetch-depth: 2
- name: Set up JDK
uses: actions/setup-java@v1
uses: actions/setup-java@v3
with:
java-version: '1.8'
java-version: '8'
distribution: 'temurin'
- name: Build with Maven
run: .github/scripts/build.sh
- name: Code coverage report
Expand All @@ -36,9 +37,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-java@v1
uses: actions/setup-java@v3
with:
java-version: '1.8'
java-version: '8'
distribution: 'temurin'
- name: Install GPG key
run: |-
gpg --batch --import-options import-show --import << EOF
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/verify.yml
Expand Up @@ -20,9 +20,10 @@ jobs:
with:
fetch-depth: 2
- name: Set up JDK
uses: actions/setup-java@v1
uses: actions/setup-java@v3
with:
java-version: '1.8'
java-version: '8'
distribution: 'temurin'
- name: Build with Maven
run: .github/scripts/build.sh
- name: Code coverage report
Expand Down