Skip to content

Commit

Permalink
Merge pull request #126 from hazendaz/master
Browse files Browse the repository at this point in the history
[actions] Update jdk support
  • Loading branch information
hazendaz committed May 9, 2021
2 parents e58438e + 2f8284c commit 23e7784
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,19 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
java: [8, 11, 15, 16-ea]
java: [8, 11, 16, 17-ea]
distribution: ['adopt']
fail-fast: false
max-parallel: 4
name: Test JDK ${{ matrix.java }}, ${{ matrix.os }}

steps:
- uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-java@v1
uses: actions/setup-java@v2
with:
java-version: ${{ matrix.java }}
distribution: ${{ matrix.distribution }}
- name: Start Redis
uses: supercharge/redis-github-action@1.1.0
with:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/coveralls.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,10 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-java@v1
uses: actions/setup-java@v2
with:
java-version: 8
distribution: adopt
- name: Start Redis
uses: supercharge/redis-github-action@1.1.0
with:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/sonar.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,10 @@ jobs:
# Disabling shallow clone is recommended for improving relevancy of reporting
fetch-depth: 0
- name: Set up JDK
uses: actions/setup-java@v1
uses: actions/setup-java@v2
with:
java-version: 11
distribution: adopt
- name: Start Redis
uses: supercharge/redis-github-action@1.1.0
with:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/sonatype.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,10 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-java@v1
uses: actions/setup-java@v2
with:
java-version: 11
distribution: adopt
- name: Start Redis
uses: supercharge/redis-github-action@1.1.0
with:
Expand Down

0 comments on commit 23e7784

Please sign in to comment.