Bump com.google.protobuf:protobuf-java from 4.30.0 to 4.30.1 #770
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: Build | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: jdx/mise-action@v2 | |
| - name: Cache local Maven repository | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.m2/repository | |
| key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
| restore-keys: | | |
| ${{ runner.os }}-maven- | |
| - name: Run the Maven verify phase | |
| env: | |
| PROTO_GENERATION: true | |
| REQUIRE_PROTO_UP_TO_DATE: true | |
| run: | | |
| mise run ci | |
| mvn -v | |
| ./mvnw clean install | |
| ./mvnw javadoc:javadoc -P javadoc # just to check if javadoc is generated |