Skip to content

Bump org.apache.maven.plugins:maven-project-info-reports-plugin from 3.4.3 to 3.7.0 #335

Bump org.apache.maven.plugins:maven-project-info-reports-plugin from 3.4.3 to 3.7.0

Bump org.apache.maven.plugins:maven-project-info-reports-plugin from 3.4.3 to 3.7.0 #335

name: Dependabot Workflow
on: [ pull_request ]
jobs:
build:
if: ${{ github.actor == 'dependabot[bot]' }}
runs-on: ubuntu-latest
steps:
- name: 'Checkout repository on branch: ${{ github.REF }}'
uses: actions/checkout@v4
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 17
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 17
- name: Cache Maven packages
uses: actions/cache@v4
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Maven Version
run: mvn --version
- name: Build Project And Analyze with Sonar
run: mvn -e -B -U clean install
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}