Skip to content

Commit

Permalink
ci: update github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ctron committed May 6, 2024
1 parent d4fa611 commit b1e6506
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/maven.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,18 @@ jobs:

strategy:
matrix:
java: ["1.8", "11", "17", "21"]
java: ["8", "11", "17", "21"]

steps:

- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v1
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
cache: 'maven'

- name: Build with Maven
run: mvn -B package

0 comments on commit b1e6506

Please sign in to comment.