Skip to content
This repository has been archived by the owner on Aug 2, 2023. It is now read-only.

fix(deps): update dependency org.apache.commons:commons-lang3 to v3.13.0 #2434

fix(deps): update dependency org.apache.commons:commons-lang3 to v3.13.0

fix(deps): update dependency org.apache.commons:commons-lang3 to v3.13.0 #2434

Workflow file for this run

name: CI
on: [ push, pull_request ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: 11
distribution: 'adopt'
- name: Cache local Maven repository
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build with Maven
run: mvn -B package --file pom.xml