Skip to content

chore(deps): bump org.eclipse.jgit:org.eclipse.jgit from 5.9.0.202009080501-r to 7.0.0.202409031743-r #156

chore(deps): bump org.eclipse.jgit:org.eclipse.jgit from 5.9.0.202009080501-r to 7.0.0.202409031743-r

chore(deps): bump org.eclipse.jgit:org.eclipse.jgit from 5.9.0.202009080501-r to 7.0.0.202409031743-r #156

Workflow file for this run

---
name: Build and test
"on":
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, ubuntu-latest]
java: [8, 11, 13]
steps:
- uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- uses: actions/cache@v1
with:
path: ~/.m2/repository
key: ${{ runner.os }}-jdk-${{ matrix.java }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-jdk-${{ matrix.java }}-maven-
- name: Build it with Maven
run: |
git config --global user.email "host@example.com"
git config --global user.name "Host"
mvn -B clean verify -Pqulice -Pjacoco