diff --git a/.github/workflows/pullrequest.yml b/.github/workflows/pullrequest.yml index 0c4cd0c70..0c497c5d6 100644 --- a/.github/workflows/pullrequest.yml +++ b/.github/workflows/pullrequest.yml @@ -28,7 +28,7 @@ jobs: with: profiles: '[{ "id": "sonar", "properties": { "sonar.organization":"magenic", "sonar.host.url":"https://sonarcloud.io", "sonar.login": "${{secrets.SONAR_LOGIN}}" }}]' - name: Run Unit Tests - uses: GabrielBB/xvfb-action@v1.5 + uses: GabrielBB/xvfb-action@v1.6 with: run: mvn -B -Dtesting verify package --file pom.xml -e -fae -T 1C -Djdk.version=${{matrix.jdk}} env: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bdedd9e79..a23582932 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -52,7 +52,7 @@ jobs: - name: Print out version number from needs run: echo "${{env.VERSION}}" - name: Set Version to ${{env.VERSION}} and Run Unit Tests - uses: GabrielBB/xvfb-action@v1.5 + uses: GabrielBB/xvfb-action@v1.6 with: run: mvn -Drevision="${{env.VERSION}}" -Dtesting -T 1C verify install -B -e -f pom.xml -fae -Djdk.version=${{env.JDK}} env: diff --git a/.github/workflows/snapshot.yml b/.github/workflows/snapshot.yml index 746c092c5..e34136b94 100644 --- a/.github/workflows/snapshot.yml +++ b/.github/workflows/snapshot.yml @@ -45,7 +45,7 @@ jobs: with: profiles: '[{ "id": "sonar", "properties": { "sonar.organization":"magenic", "sonar.host.url":"https://sonarcloud.io", "sonar.login": "${{secrets.SONAR_LOGIN}}"}}]' - name: Set Version to ${{env.VERSION}}-SNAPSHOT and Run Unit Tests - uses: GabrielBB/xvfb-action@v1.5 + uses: GabrielBB/xvfb-action@v1.6 with: run: mvn -Drevision="${{env.VERSION}}-SNAPSHOT" -B -Dtesting verify install --file pom.xml -e -fae -T 1C -Djdk.version=${{env.JDK}} env: