Skip to content

Bump quarkus.version from 3.6.4 to 3.7.3 #116

Bump quarkus.version from 3.6.4 to 3.7.3

Bump quarkus.version from 3.6.4 to 3.7.3 #116

Workflow file for this run

name: "CI Build"
on:
push:
branches: ["main"]
paths-ignore:
- '**.md'
- '.gitignore'
pull_request:
paths-ignore:
- '**.md'
- '.gitignore'
pull_request_target:
branches: ["main"]
workflow_dispatch:
jobs:
jdk17-build:
name: "JDK 17 Build"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: Cache Maven packages
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-maven
- name: Build with Maven (package)
run: mvn --batch-mode --update-snapshots package checkstyle::check
jdk21-build:
name: "JDK 21 Build"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
java-version: '21'
# TODO: change to temurin after jdk 21 release
distribution: 'zulu'
- name: Build with Maven (package)
run: mvn --batch-mode --update-snapshots package checkstyle::check
sonar-cloud-analysis:
name: "Sonar Cloud Build"
runs-on: ubuntu-latest
# dependabot should not have SONAR_TOKEN
if: github.actor != 'dependabot[bot]'
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: Cache SonarCloud packages
uses: actions/cache@v3
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- name: Cache Maven packages
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-maven
- name: Build and analyze (verify)
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: mvn -B verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dsonar.projectKey=remsfal_remsfal-backend