Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
jdk: [17, 21]
jdk: [17, 21, 25]

runs-on: ${{ matrix.platform }}
name: on ${{ matrix.platform }} with JDK ${{ matrix.jdk }}
Expand All @@ -22,7 +22,7 @@ jobs:
- name: Set up JDK ${{ matrix.jdk }}
uses: actions/setup-java@v5
with:
distribution: 'temurin'
distribution: 'corretto'
java-version: '${{ matrix.jdk }}'
check-latest: true
cache: 'maven'
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/update-badges.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ jobs:
- name: Commit updated badges
continue-on-error: true
run: |
git pull
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git add badges/*.svg
Expand Down
Loading