Skip to content

Commit

Permalink
Merge pull request #15 from Alfresco/feature/PMD730
Browse files Browse the repository at this point in the history
Update to PMD 7.3.0.
  • Loading branch information
tpage-alfresco authored Jul 23, 2024
2 parents a2e69ba + 112e572 commit 1ea9060
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 12 deletions.
23 changes: 15 additions & 8 deletions .secrets.baseline
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,10 @@
{
"path": "detect_secrets.filters.allowlist.is_line_allowlisted"
},
{
"path": "detect_secrets.filters.common.is_baseline_file",
"filename": ".secrets.baseline"
},
{
"path": "detect_secrets.filters.common.is_ignored_due_to_verification_policies",
"min_level": 2
Expand Down Expand Up @@ -114,27 +118,30 @@
"filename": ".pre-commit-config.yaml",
"hashed_secret": "c8b1019606f02af959020dd388b4007e4398835c",
"is_verified": true,
"line_number": 3
"line_number": 3,
"is_secret": false
}
],
"README.md": [
{
"type": "Hex High Entropy String",
"filename": "README.md",
"hashed_secret": "d9c637c5f0fe3f9db710d8065b131eb3e1214eec",
"is_verified": true,
"line_number": 20
"hashed_secret": "994dedbe9e0060d493b2f5ff60debdddaa9aaa78",
"is_verified": false,
"line_number": 20,
"is_secret": false
}
],
"action.yml": [
{
"type": "Hex High Entropy String",
"filename": "action.yml",
"hashed_secret": "d9c637c5f0fe3f9db710d8065b131eb3e1214eec",
"is_verified": true,
"line_number": 11
"hashed_secret": "994dedbe9e0060d493b2f5ff60debdddaa9aaa78",
"is_verified": false,
"line_number": 11,
"is_secret": false
}
]
},
"generated_at": "2024-05-08T12:37:04Z"
"generated_at": "2024-07-22T13:19:45Z"
}
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ if: >
steps:
- uses: Alfresco/alfresco-build-tools/.github/actions/pmd@ref
with:
pmd-version: "7.1.0" # The version of PMD to use (only 7.x versions are supported).
pmd-sha256-digest: "0d31d257450f85d995cc87099f5866a7334f26d6599dacab285f2d761c049354" # The expected SHA-256 digest of the PMD distribution binaries zip file (64 digit hexidecimal value).
pmd-version: "7.3.0" # The version of PMD to use (only 7.x versions are supported).
pmd-sha256-digest: "7e56043b5db83b288804c97d48a46db37bba22861b63eadd8e69f72c74bfb0a8" # The expected SHA-256 digest of the PMD distribution binaries zip file (64 digit hexidecimal value).
create-github-annotations: "true" # Whether to create annotations using the GitHub Advanced Security (nb. this is not free for private repositories)
fail-on-new-issues: "true" # Whether the introduction of new issues should cause the build to fail.
pmd-ruleset-repo: "Alfresco/pmd-ruleset" # The GitHub repository containing the PMD ruleset (by default https://github.com/Alfresco/pmd-ruleset/).
Expand Down
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ inputs:
pmd-version:
description: The version of PMD to use
required: false
default: "7.1.0"
default: "7.3.0"
pmd-sha256-digest:
description: The expected SHA-256 digest of the PMD zip file (64 digit hexidecimal value).
required: false
default: "0d31d257450f85d995cc87099f5866a7334f26d6599dacab285f2d761c049354"
default: "7e56043b5db83b288804c97d48a46db37bba22861b63eadd8e69f72c74bfb0a8"
create-github-annotations:
description: |
Whether to create inline comments on the PR using GH Advanced Security. This is free for open source projects but
Expand Down

0 comments on commit 1ea9060

Please sign in to comment.