feat: bump version to jdk 25 and all the dependencies #83
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| pull_request: | |
| branches: [ main ] | |
| paths-ignore: | |
| - '.github/ISSUE_TEMPLATE/**' | |
| - '.github/CODEOWNERS' | |
| - '.github/PULL_REQUEST_TEMPLATE.md' | |
| - '.github/dependabot.yml' | |
| - '.gitignore' | |
| - 'CHANGELOG.md' | |
| - 'LICENSE' | |
| - 'README.md' | |
| push: | |
| branches: [ main ] | |
| paths-ignore: | |
| - '.github/ISSUE_TEMPLATE/**' | |
| - '.github/CODEOWNERS' | |
| - '.github/PULL_REQUEST_TEMPLATE.md' | |
| - '.github/dependabot.yml' | |
| - '.gitignore' | |
| - 'CHANGELOG.md' | |
| - 'LICENSE' | |
| - 'README.md' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Set up JDK 11 | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: temurin | |
| java-version: 25 | |
| - name: Cache Maven dependencies | |
| uses: actions/cache@v5 | |
| with: | |
| path: ~/.m2/repository | |
| key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
| restore-keys: | | |
| ${{ runner.os }}-maven- | |
| - name: Build with Maven | |
| run: mvn clean install --no-transfer-progress | |
| - name: Upload coverage to Codecov | |
| uses: codecov/codecov-action@v5 |