Bump org.jetbrains.kotlin:kotlin-stdlib from 1.9.23 to 2.2.21 #13
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: Maven Verify | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| - release-3 | |
| jobs: | |
| build-main: | |
| if: github.base_ref == 'release-3' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up JDK 11 | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '11' | |
| - name: Clean with Maven | |
| run: mvn clean | |
| - name: Build with Maven | |
| run: mvn verify | |
| build-release-4: | |
| if: github.base_ref == 'main' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '17' | |
| - name: Build with Maven | |
| run: mvn clean verify |