Skip to content

Bump io.quarkus.platform:quarkus-bom from 3.28.2 to 3.28.3 (#394) #337

Bump io.quarkus.platform:quarkus-bom from 3.28.2 to 3.28.3 (#394)

Bump io.quarkus.platform:quarkus-bom from 3.28.2 to 3.28.3 (#394) #337

Workflow file for this run

name: Gradle CI
on:
push:
paths:
- build.gradle
- gradle.properties
- settings.gradle
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up JDK 21
uses: actions/setup-java@v5
with:
distribution: "temurin"
java-version: "21"
cache: "gradle"
- name: Cache Docker images.
uses: ScribeMD/[email protected]
with:
key: docker-${{ runner.os }}-${{ hashFiles('**/pom.xml', '**/build.gradle', '**/settings.gradle', '**/docker-compose.yml') }}
- name: Build and Test with Gradle
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: ./gradlew --console=plain test