From 7a903a94865f558f45ac04ee15866d4413345b6c Mon Sep 17 00:00:00 2001 From: Scott Larkin Date: Mon, 18 Dec 2023 15:16:58 -0500 Subject: [PATCH] Upgrade `codeclimate-pmd` version to `7.0.0` --- bin/install-pmd.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/install-pmd.sh b/bin/install-pmd.sh index e0d6e60..86384fc 100755 --- a/bin/install-pmd.sh +++ b/bin/install-pmd.sh @@ -4,7 +4,7 @@ set -euo pipefail LIB_DIR=/usr/src/app/lib download_pmd() { - URL="https://github.com/pmd/pmd/releases/download/pmd_releases/6.7.0/pmd-bin-6.7.0.zip" + URL="https://github.com/pmd/pmd/releases/download/pmd_releases/7.0.0-rc4/pmd-dist-7.0.0-rc4-bin.zip" wget -O pmd.zip $URL }