Skip to content

Bump quarkus.platform.version from 3.36.0 to 3.36.2 #446

Bump quarkus.platform.version from 3.36.0 to 3.36.2

Bump quarkus.platform.version from 3.36.0 to 3.36.2 #446

Workflow file for this run

name: PR Maven Build
on:
pull_request:
paths:
- "**.xml"
- "*.yml"
- "src/**"
- "ide-config"
env:
JAVA_VERSION: 21
JAVA_DISTRO: temurin
NATIVE_JAVA_VERSION: 24
GRAALVM_DIST: graalvm-community
GH_BOT_EMAIL: "41898282+github-actions[bot]@users.noreply.github.com"
GH_BOT_NAME: "GitHub Action"
permissions:
contents: read
actions: read
jobs:
metadata:
uses: ebullient/workflows/.github/workflows/java-snap-metadata.yml@65cfcd66420f2a8032c82e84bd6688a1a64713a9 # 2.0.1
build:
runs-on: ubuntu-latest
needs: [metadata]
outputs:
cache_key: ${{ steps.data_cache.outputs.cache_key }}
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- uses: ./.github/actions/data-cache
id: data_cache
with:
failIfMissing: true
- name: Build with Maven
uses: ebullient/workflows/.github/actions/maven-build@65cfcd66420f2a8032c82e84bd6688a1a64713a9 # 2.0.1
with:
artifact: ${{ needs.metadata.outputs.artifact }}
version: ${{ needs.metadata.outputs.snapshot }}
java-version: ${{ env.JAVA_VERSION }}
java-distribution: ${{ env.JAVA_DISTRO }}
native-build:
runs-on: ubuntu-latest
needs: [metadata, build]
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
fetch-depth: 1
- uses: ./.github/actions/native-data-cache
with:
cache_key: ${{ needs.build.outputs.cache_key }}
- name: Native build with Maven
uses: ebullient/workflows/.github/actions/native-build@65cfcd66420f2a8032c82e84bd6688a1a64713a9 # 2.0.1
with:
artifact: ${{ needs.metadata.outputs.artifact }}
version: ${{ needs.metadata.outputs.snapshot }}
native-java-version: ${{ env.NATIVE_JAVA_VERSION }}
distribution: ${{ env.GRAALVM_DIST }}
matrix-os: ubuntu-latest