Skip to content

Bump commons-io from 2.6 to 2.13.0 #58

Bump commons-io from 2.6 to 2.13.0

Bump commons-io from 2.6 to 2.13.0 #58

Workflow file for this run

# This workflow will build a Java project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java Servlet CI
on:
push:
branches: [ master ]
paths-ignore:
- '**.md'
- '**.json'
pull_request:
branches: [ master ]
paths-ignore:
- '**.md'
- '**.json'
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 3
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
java: [ 11 ]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Java ${{ matrix.java }}
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Build with Maven
# Ensure that your code builds, tests pass, and a package can be created
run: mvn --batch-mode --update-snapshots verify