Skip to content

Commit bec3778

Browse files
committed
7.0.0-rc4
1 parent 85f2671 commit bec3778

File tree

262 files changed

+33595
-56
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

262 files changed

+33595
-56
lines changed

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
lts/gallium
1+
lts/iron

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
- This action allows to use [PMD Source Code Analyzer](https://pmd.github.io/) from GitHub Actions
44
- You can easily validate whole Apex codebase every time when push happens against any/certain branches
5-
- Latest version uses PMD `7.0.0-rc3`
5+
- Latest version uses PMD `7.0.0-rc4`
66

77
## Example usage
88

@@ -22,7 +22,7 @@ jobs:
2222
with:
2323
fetch-depth: 0
2424
- name: Setup PMD
25-
uses: legetz/[email protected]rc3
25+
uses: legetz/[email protected]rc4
2626
- name: APEX full scan
2727
run: pmd check --dir ./force-app/main/default/classes/*.cls --rulesets ./pmd-rules.xml -f text
2828
```
@@ -41,7 +41,7 @@ jobs:
4141
with:
4242
fetch-depth: 0
4343
- name: Setup PMD
44-
uses: legetz/[email protected]rc3
44+
uses: legetz/[email protected]rc4
4545
- name: APEX full scan for design rules only
4646
run: pmd check --dir ./force-app/main/default/classes -R category/apex/design.xml -f text
4747
```

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: 'PMD - Salesforce APEX code analyzer action'
22
author: Leo Jokinen
33
description: 'Check Salesforce APEX code using PMD'
44
runs:
5-
using: 'node16'
5+
using: 'node20'
66
main: 'index.js'
77
branding:
88
icon: 'award'

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
const core = require("@actions/core");
22
const exec = require("child_process").exec;
33

4-
const PMD_VERSION = "7.0.0-rc3";
4+
const PMD_VERSION = "7.0.0-rc4";
55

66
try {
77
installPMD();

node_modules/.bin/uuid

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/.yarn-integrity

Lines changed: 8 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@actions/core/README.md

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@actions/core/lib/core.d.ts

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@actions/core/lib/core.js

Lines changed: 17 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@actions/core/lib/core.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)