Skip to content

Bump commons-io:commons-io from 2.6 to 2.14.0 #25

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

Bump commons-io:commons-io from 2.6 to 2.14.0 #25

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 7, 8, 9, 10, 11]
steps:
- uses: actions/[email protected]
- name: Set up JDK ${{ matrix.java }}
uses: actions/[email protected]
with:
java-version: ${{ matrix.java }}
- name: Build with Maven
run: mvn -B clean package
finish:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Set up JDK 1.8
uses: actions/[email protected]
with:
java-version: 1.8
- name: Build with Maven
run: mvn -B clean cobertura:cobertura coveralls:report -DrepoToken=${{ secrets.COVERALLS_TOKEN }}