Skip to content

Bump ch.qos.logback:logback-classic from 1.2.3 to 1.3.12 #28

Bump ch.qos.logback:logback-classic from 1.2.3 to 1.3.12

Bump ch.qos.logback:logback-classic from 1.2.3 to 1.3.12 #28

Workflow file for this run

name: Jill CI
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches: [ master, dev ]
pull_request:
branches: [ master, dev ]
jobs:
build:
runs-on: ubuntu-18.04
steps:
- name: Set up JDK 11.0.2
uses: actions/setup-java@v1
with:
java-version: '11.0.2'
- name: Cache Maven packages
uses: actions/cache@v2
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Clone the repository
uses: actions/checkout@v2
- name: Build Jill
run: |
cd jill && mvn clean install
- name: Prepare artifacts
run: |
mkdir staging && cp jill/target/jill*-jar-with-dependencies.jar staging
- name: Upload artifacts
uses: actions/upload-artifact@v2
with:
path: staging