Skip to content

Bump maven-scm-provider-gitexe from 1.12.2 to 2.0.1 #590

Bump maven-scm-provider-gitexe from 1.12.2 to 2.0.1

Bump maven-scm-provider-gitexe from 1.12.2 to 2.0.1 #590

Workflow file for this run

name: Build and Analyze
on: [push, pull_request]
jobs:
build:
if: "!contains(toJSON(github.event.commits.*.message), '[skip ci]')"
runs-on: ubuntu-latest
steps:
- name: 'Checkout repository on branch: ${{ github.REF }}'
uses: actions/checkout@v3
env:
GIT_TRACE: 1
GIT_CURL_VERBOSE: 1
with:
ref: ${{ github.REF }}
- name: Retrieve entire repository history
run: |
git fetch --prune --unshallow
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: 11
- name: Maven Version
run: mvn --version
- name: Build Project
run: mvn --batch-mode --update-snapshots clean verify
- name: Analyze with Sonar
run: mvn --batch-mode sonar:sonar -Dsonar.login=$SONAR_TOKEN
env:
GITHUB_TOKEN: ${{ github.token }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}