This repository has been archived by the owner on Nov 22, 2024. It is now read-only.
Bump ch.qos.logback:logback-classic from 1.2.10 to 1.3.12 in /examples/mvn-hello-world/hello-world #1993
Workflow file for this run
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: Build PRs | |
on: | |
pull_request: | |
jobs: | |
run-scripted-tests: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
java: [ '8', '11', '13' ] | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Setup java | |
uses: joschi/setup-jdk@v2 | |
with: | |
java-version: ${{ matrix.java }} | |
architecture: x64 | |
- name: Cache SBT and Coursier cache | |
uses: coursier/cache-action@v3 | |
- name: Run scripted tests | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "Cloudflow CI" | |
cd core | |
sbt -mem 2048 +publishLocal cloudflow-sbt-plugin/scripted |