Bump dependency.quarkus.version from 3.24.0 to 3.25.1 #467
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: Quarkus Playground Build | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - '.gitignore' | |
| - 'LICENSE' | |
| - 'NOTICE' | |
| - 'README*' | |
| pull_request: | |
| paths-ignore: | |
| - '.gitignore' | |
| - 'LICENSE' | |
| - 'NOTICE' | |
| - 'README*' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| name: checkout | |
| - uses: actions/setup-java@v4 | |
| name: set up jdk 17 | |
| with: | |
| distribution: 'temurin' | |
| java-version: 17 | |
| cache: 'maven' | |
| cache-dependency-path: '**/pom.xml' | |
| - name: build with maven | |
| run: mvn verify |