Skip to content

chore(deps): Bump io.quarkus.platform:quarkus-bom from 3.7.1 to 3.7.3 #1075

chore(deps): Bump io.quarkus.platform:quarkus-bom from 3.7.1 to 3.7.3

chore(deps): Bump io.quarkus.platform:quarkus-bom from 3.7.1 to 3.7.3 #1075

Workflow file for this run

# SPDX-FileCopyrightText: 2022 Alliander N.V.
#
# SPDX-License-Identifier: Apache-2.0
name: Build Project
on:
push:
branches:
- '**'
pull_request:
branches:
- 'main'
- 'develop'
jobs:
build:
name: Build
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '17'
- name: Create custom Maven Settings.xml
uses: whelk-io/maven-settings-xml-action@v21
with:
output_file: custom_maven_settings.xml
servers: '[{ "id": "github-packages-compas", "username": "OWNER", "password": "${{ secrets.GITHUB_TOKEN }}" }]'
- name: Build with Maven
run: ./mvnw -s custom_maven_settings.xml -B clean verify