Skip to content

Bump ch.qos.logback:logback-core from 1.2.9 to 1.3.12 in /demo #63

Bump ch.qos.logback:logback-core from 1.2.9 to 1.3.12 in /demo

Bump ch.qos.logback:logback-core from 1.2.9 to 1.3.12 in /demo #63

Workflow file for this run

name: build
on:
push
jobs:
build:
runs-on: ubuntu-18.04
steps:
- name: Checkout Project
uses: actions/checkout@v2
- name: Setup environment
id: setup-environment
uses: actions/setup-java@v1
with:
java-version: 1.8
- uses: whelk-io/maven-settings-xml-action@v13
with:
servers: '[{ "id": "git", "username": "${{ secrets.MVN_SERVER_USER }}", "password": "${{ secrets.MVN_SERVER_PASS }}" }]'
repositories: '[{ "id": "git", "url": "https://maven.pkg.github.com/manusant/spark-swagger" }]'
- name: Maven cache
uses: actions/cache@v2
with:
path: ~/.m2/repository
key: maven-cache-${{ hashFiles('**/pom.xml') }}
restore-keys: maven-cache-
- name: Build
id: build
run: ./mvnw clean install -PCI