Skip to content

Bump quarkus.version from 3.6.4 to 3.10.0 #538

Bump quarkus.version from 3.6.4 to 3.10.0

Bump quarkus.version from 3.6.4 to 3.10.0 #538

Workflow file for this run

name: Build
on:
push:
branches:
- "main"
paths-ignore:
- '.gitignore'
- 'CODEOWNERS'
- 'LICENSE'
- 'README*'
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 11
- name: Get Date
id: get-date
run: |
echo "::set-output name=date::$(/bin/date -u "+%Y-%m")"
shell: bash
- name: Cache Maven Repository
id: cache-maven
uses: actions/cache@v4
with:
path: ~/.m2/repository
# refresh cache every month to avoid unlimited growth
key: maven-repo-${{ steps.get-date.outputs.date }}
- name: Build with Maven
run: mvn -B formatter:validate verify --file pom.xml -Dnative
env:
OAUTH: ${{ secrets.GITHUB_TOKEN }}
- name: Delete Quarkiverse Artifacts From Cache
shell: bash
run: rm -rf ~/.m2/repository/io/quarkiverse