Skip to content

Bump org.apache.logging.log4j:log4j-core from 2.1 to 2.12.4 in /core #43

Bump org.apache.logging.log4j:log4j-core from 2.1 to 2.12.4 in /core

Bump org.apache.logging.log4j:log4j-core from 2.1 to 2.12.4 in /core #43

Workflow file for this run

---
name: Java CI
on: [push]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-18.04, macOS-latest, windows-2016]
java: [7, 8, 11, 15]
fail-fast: false
max-parallel: 4
name: Test JDK ${{ matrix.java }}, ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
- name: Set up JDK
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Test with Maven
run: mvn test -B --file pom.xml
...