Skip to content

pmd

pmd #501

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: pmd
on:
push:
branches: [ main, 2022-12, 2022-09, 2022-06 ]
pull_request:
branches: [ main, 2022-12, 2022-09, 2022-06 ]
schedule:
- cron: '37 5 * * 0'
permissions:
contents: read
jobs:
pmd-code-scan:
permissions:
contents: read # for actions/checkout to fetch code
security-events: write # for github/codeql-action/upload-sarif to upload SARIF results
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
- name: Run PMD
id: pmdcommon
uses: pmd/pmd-github-action@v2
with:
rulesets: 'rulesets/java/quickstart.xml'
analyzeModifiedFilesOnly: false
- name: Upload SARIF file
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: pmd-report.sarif