Skip to content

Backport X509Certificate.getSubjectX500Principal() instead of getSubj… #835

Backport X509Certificate.getSubjectX500Principal() instead of getSubj…

Backport X509Certificate.getSubjectX500Principal() instead of getSubj… #835

Workflow file for this run

name: Maven build
on: [ push, pull_request ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: zulu
java-version: 8
- name: Cache Maven packages
uses: actions/cache@v4
with:
path: ~/.m2
key: ${{ runner.os }}-m2-v8-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2-v8
- name: Build
run: mvn --batch-mode compile
- name: Test and package
run: mvn --batch-mode package