Skip to content

Bump org.eclipse.jgit:org.eclipse.jgit from 5.2.1.201812262042-r to 6.6.1.202309021850-r in /sync-git-submodules-branches #62

Bump org.eclipse.jgit:org.eclipse.jgit from 5.2.1.201812262042-r to 6.6.1.202309021850-r in /sync-git-submodules-branches

Bump org.eclipse.jgit:org.eclipse.jgit from 5.2.1.201812262042-r to 6.6.1.202309021850-r in /sync-git-submodules-branches #62

Workflow file for this run

# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Maven Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'adopt'
- name: Cache Maven packages
uses: actions/cache@v2
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Build with Maven
working-directory: sync-git-submodules-branches
run: mvn -B package --file pom.xml
- name: Stage result files
run: mkdir staging && cp sync-git-submodules-branches/target/*.jar staging
- name: Upload Artifacts
uses: actions/upload-artifact@v2
with:
name: Package
path: staging