Skip to content

Ignore advisories from GHSA that are withdrawn. #60

Ignore advisories from GHSA that are withdrawn.

Ignore advisories from GHSA that are withdrawn. #60

Workflow file for this run

name: Java CI
on:
push:
branches: ['**']
jobs:
build:
runs-on: ubuntu-18.04
strategy:
matrix:
java: [ '11.x' ]
steps:
- uses: actions/checkout@master
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
architecture: x64
- name: Build with Maven
run: mvn -B package --file pom.xml