bump JDK to 25 #388
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: Build | |
| on: | |
| push: | |
| pull_request_target: | |
| types: [labeled] | |
| jobs: | |
| build: | |
| name: Build and Test | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'temurin' | |
| java-version: 25 | |
| cache: 'maven' | |
| - name: Ensure to use tagged version | |
| if: startsWith(github.ref, 'refs/tags/') | |
| shell: bash | |
| run: | | |
| mvn -B versions:set --file ./pom.xml -DnewVersion=${GITHUB_REF##*/} | |
| - name: Build and Test | |
| id: buildAndTest | |
| run: mvn -B clean install | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: artifacts | |
| path: target/*.jar | |
| - name: Create Release | |
| uses: softprops/action-gh-release@v2 | |
| if: startsWith(github.ref, 'refs/tags/') | |
| with: | |
| prerelease: true | |
| token: ${{ secrets.CRYPTOBOT_RELEASE_TOKEN }} | |
| generate_release_notes: true | |
| body: | | |
| For a list of all notable changes, read the [changelog](/CHANGELOG.md). |