fix(deps): update quarkus.platform.version to v3.18.1 (#1690) #823
This file contains 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-project CI | |
on: | |
push: | |
paths: | |
- "quarkus-project/**" | |
branches: | |
- main | |
pull_request: | |
paths: | |
- "quarkus-project/**" | |
types: | |
- opened | |
- synchronize | |
- reopened | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: [ '21' ] | |
defaults: | |
run: | |
working-directory: "quarkus-project" | |
name: Build on Java ${{ matrix.Java }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis | |
- uses: graalvm/setup-graalvm@v1 | |
with: | |
distribution: 'graalvm' | |
java-version: ${{ matrix.java }} | |
cache: "maven" | |
- name: Printing versions | |
run: | | |
echo "GRAALVM_HOME: $GRAALVM_HOME" | |
echo "JAVA_HOME: $JAVA_HOME" | |
java --version | |
native-image --version | |
- name: Build and analyze | |
run: ./mvnw clean verify -Pnative |