Bump commons-io:commons-io from 2.4 to 2.14.0 #10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: TESTING-TOOLBOX-CI | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.8 | |
- name: Compile | |
run: mvn clean install --file pom.xml | |
- name: Deploy | |
env: | |
GITHUB_USERNAME: ${{ secrets.githubUsername }} | |
GITHUB_PASSWORD: ${{ secrets.githubPassword }} | |
run: mvn deploy -Dgithub.username=$GITHUB_USERNAME -Dgithub.password=$GITHUB_PASSWORD --file pom.xml |