Skip to content

Bump org.apache.commons:commons-lang3 from 3.1 to 3.18.0 #57

Bump org.apache.commons:commons-lang3 from 3.1 to 3.18.0

Bump org.apache.commons:commons-lang3 from 3.1 to 3.18.0 #57

Workflow file for this run

#
# based on https://github.com/actions/setup-java
#
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
# test against latest update of each major Java version, as well as specific updates of LTS versions:
java: [ 8, 11 ]
name: Java ${{ matrix.java }}
steps:
- uses: actions/checkout@v2
- name: Cache maven artifacts
uses: actions/cache@v2
with:
path: ~/.m2
key: ${{ runner.os }}-${{ matrix.java }}-${{ hashFiles('**/pom.xml') }}
- name: Setup java
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Build with Maven
run: mvn -B verify --file pom.xml