Skip to content

Bump org.apache.maven.plugins:maven-gpg-plugin from 3.2.2 to 3.2.4 #389

Bump org.apache.maven.plugins:maven-gpg-plugin from 3.2.2 to 3.2.4

Bump org.apache.maven.plugins:maven-gpg-plugin from 3.2.2 to 3.2.4 #389

Workflow file for this run

name: Java CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 17
- name: Build with Maven
run: mvn -B package --file pom.xml
- name: Publish Test Report
uses: mikepenz/action-junit-report@v4
if: success() || failure() # always run even if the previous step fails
with:
report_paths: '**/target/surefire-reports/TEST-*.xml'