Skip to content

Bump commons-io:commons-io from 2.11.0 to 2.14.0 #24

Bump commons-io:commons-io from 2.11.0 to 2.14.0

Bump commons-io:commons-io from 2.11.0 to 2.14.0 #24

Workflow file for this run

name: Unit Tests
on: [ push ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # needed for blame information for Sonar
- name: "Set up JDK"
uses: actions/setup-java@v3
with:
distribution: "temurin"
java-version: 17
cache: "maven"
- name: "Run tests with Maven & Sonar"
run: ./mvnw --batch-mode -Pcoverage verify sonar:sonar -Dsonar.login=${{ secrets.SONAR_LOGIN }}