Skip to content

Commit 1913bd5

Browse files
authored
chore(deps): update actions/setup-java action to v2 (#451)
See https://github.com/actions/setup-java/blob/main/docs/switching-to-v2.md for details.
1 parent c3b05f3 commit 1913bd5

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/tests.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,9 @@ jobs:
2323
- name: Checkout code
2424
uses: actions/checkout@v2
2525
- name: Set up JDK 1.8
26-
uses: actions/setup-java@v1
26+
uses: actions/setup-java@v2
2727
with:
28-
java-version: 1.8
28+
distribution: 'zulu'
29+
java-version: '8'
2930
- name: Get Maven checkstyle report
30-
run: mvn -B checkstyle:check
31+
run: mvn -B checkstyle:check

0 commit comments

Comments
 (0)