Skip to content

Commit

Permalink
use correct semver in github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
mtf90 committed Oct 4, 2023
1 parent 3a279ea commit 5086032
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
name: "Tests and Analysis (JDK: ${{ matrix.jdk }})"
strategy:
matrix:
jdk: [ 1.8, 11, 17 ]
jdk: [ 8, 11, 17 ]
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:
needs: [ tests-and-analysis ]
strategy:
matrix:
jdk: [ 1.8, 11, 17 ]
jdk: [ 8, 11, 17 ]
os: [ ubuntu-latest, windows-latest, macOS-latest ]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: 1.8
java-version: 8
- name: Set up cache
uses: actions/cache@v3
with:
Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: 1.8
java-version: 8
- name: Set up cache
uses: actions/cache@v3
with:
Expand Down

0 comments on commit 5086032

Please sign in to comment.