Skip to content

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

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

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

Workflow file for this run

# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: mavenbuild
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout from Git
uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Install Tools
run: |
sudo apt-get update
sudo apt-get install -y apt-transport-https
sudo apt-get install -y libimage-exiftool-perl
sudo apt-get install -y imagemagick
sudo apt-get install -y ffmpeg
- name: Build with Maven
run: mvn -B package --file pom.xml