Skip to content

Bump actions/checkout from 5 to 6 #367

Bump actions/checkout from 5 to 6

Bump actions/checkout from 5 to 6 #367

Workflow file for this run

# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: PMD
on:
pull_request:
branches:
- 'trunk'
push:
branches:
- 'trunk'
env:
LC_ALL: en_US.UTF-8
jobs:
PMD:
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
java: [ 8 ]
os: [ ubuntu-latest ]
name: PMD
runs-on: ubuntu-latest
if: github.actor != 'dependabot[bot]' && (github.ref == 'refs/heads/trunk' || github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository)
steps:
- name: Git Checkout
uses: actions/checkout@v6
- name: Set up Java
uses: actions/setup-java@v5
with:
distribution: 'temurin'
java-version: 8
- name: Run PMD
shell: bash
run: mvn -U -e -B -ntp clean install -DskipTests pmd:pmd
- name: Publish PMD results
uses: jwgmeligmeyling/pmd-github-action@322e346bd76a0757c4d54ff9209e245965aa066d
with:
path: '**/pmd.xml'