Skip to content

Commit

Permalink
#414: switch build distro
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian Ohr committed Mar 6, 2024
1 parent 9cc1004 commit 6b1cc37
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ env:
jobs:
build:
runs-on: ubuntu-latest
name: Java 11 build
name: Java 21 build
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '11'
distribution: 'temurin'
java-version: '21'
cache: 'maven'
- name: Build with Maven
run: mvn -B clean test --file pom.xml
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'zulu'
distribution: 'temurin'
java-version: '17'
cache: 'maven'
- name: Build with Maven
Expand Down

0 comments on commit 6b1cc37

Please sign in to comment.