Bump jetty-server.version from 12.0.14 to 12.0.15 #473
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-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up JDK | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: 17 | |
| distribution: temurin | |
| cache: 'maven' | |
| - name: Install Protoc | |
| run: | | |
| VERSION=28.2 | |
| curl -sL -o protoc.zip https://github.com/protocolbuffers/protobuf/releases/download/v$VERSION/protoc-$VERSION-linux-x86_64.zip | |
| sudo unzip protoc.zip -d /usr/local | |
| - name: Run the Maven verify phase | |
| env: | |
| PROTO_GENERATION: true | |
| REQUIRE_PROTO_UP_TO_DATE: true | |
| run: | | |
| ./mvnw clean install | |
| ./mvnw javadoc:javadoc -P javadoc # just to check if javadoc is generated |