Skip to content

janverhoeckx is pushing Bump org.apache.maven.plugins:maven-failsafe-plugin from 3.2.1 to 3.2.3 (#59) Bumps [org.apache.maven.plugins:maven-failsafe-plugin](https://github.com/apache/maven-surefire) from 3.2.1 to 3.2.3. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/apache/maven-surefire/releases">org.apache.maven.plugins:maven-failsafe-plugin's releases</a>.</em></p> <blockquote> <h2>3.2.2</h2> <!-- raw HTML omitted --> <h2>πŸ› Bug Fixes</h2> <ul... #46

janverhoeckx is pushing Bump org.apache.maven.plugins:maven-failsafe-plugin from 3.2.1 to 3.2.3 (#59) Bumps [org.apache.maven.plugins:maven-failsafe-plugin](https://github.com/apache/maven-surefire) from 3.2.1 to 3.2.3. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/apache/maven-surefire/releases">org.apache.maven.plugins:maven-failsafe-plugin's releases</a>.</em></p> <blockquote> <h2>3.2.2</h2> <!-- raw HTML omitted --> <h2>πŸ› Bug Fixes</h2> <ul...

janverhoeckx is pushing Bump org.apache.maven.plugins:maven-failsafe-plugin from 3.2.1 to 3.2.3 (#59) Bumps [org.apache.maven.plugins:maven-failsafe-plugin](https://github.com/apache/maven-surefire) from 3.2.1 to 3.2.3. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/apache/maven-surefire/releases">org.apache.maven.plugins:maven-failsafe-plugin's releases</a>.</em></p> <blockquote> <h2>3.2.2</h2> <!-- raw HTML omitted --> <h2>πŸ› Bug Fixes</h2> <ul... #46

Workflow file for this run

name: Master builder
run-name: ${{ github.actor }} is pushing ${{ github.event.head_commit.message }} to main
on:
push:
branches:
- master
jobs:
build-master:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: βš™ Checkout branch
uses: actions/checkout@v4
- name: πŸ›ˆ Get commit message
id: get-commit-message
run: echo "COMMIT_MESSAGE=`git show -s --format=%s`" >> $GITHUB_OUTPUT
- name: βš™ Install java and restore maven cache
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
cache: 'maven'
- name: πŸ’Ύ Cache SonarCloud packages
uses: actions/cache@v3
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- name: βš™ Build master and sonarcloud
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: >
mvn -U
-Drevision=${{ github.sha }}
clean org.jacoco:jacoco-maven-plugin:prepare-agent verify sonar:sonar
- name: πŸ—Έ Sonar quality gate check
uses: sonarsource/sonarqube-quality-gate-action@master
timeout-minutes: 5
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
with:
scanMetadataReportFile: target/sonar/report-task.txt