Skip to content

Commit 141295d

Browse files
kemsakuraikemsakurai
andauthored
Develop (#7)
* fix #1 Added definition of `tool_name` to action.yml. * close #3 Moved PMD setup process to Dockerfile. * Update Dockerfile * Add Test code * remove alias * Update entrypoint.sh * close #4 Update LICENSE * close #5 Update README.md * Fix hadolint warning https://github.com/hadolint/hadolint/wiki/DL3059 * Create send-release-info.yml * Upgraded PMD version Upgraded to the latest version of Series 6 * modify LICENSE 2022 > 2023 --------- Co-authored-by: kemsakurai <[email protected]>
1 parent c696208 commit 141295d

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@ FROM openjdk:17-alpine
33
ENV REVIEWDOG_VERSION=v0.14.1
44

55
RUN wget -O - -q https://raw.githubusercontent.com/reviewdog/reviewdog/master/install.sh | sh -s -- -b /usr/local/bin/ ${REVIEWDOG_VERSION}
6-
RUN wget -q https://github.com/pmd/pmd/releases/download/pmd_releases%2F6.51.0/pmd-bin-6.51.0.zip \
7-
&& unzip pmd-bin-6.51.0.zip
6+
7+
RUN wget -q https://github.com/pmd/pmd/releases/download/pmd_releases%2F6.55.0/pmd-bin-6.55.0.zip \
8+
&& unzip pmd-bin-6.55.0.zip
89

910
RUN apk add --no-cache git
1011

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2022 kemsakurai
3+
Copyright (c) 2023 kemsakurai
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export REVIEWDOG_GITHUB_API_TOKEN="${INPUT_GITHUB_TOKEN}"
1111
printenv
1212
ls
1313

14-
exec /bin/sh /pmd-bin-6.51.0/bin/run.sh pmd -d "${INPUT_SRC_PATH}" -R "${INPUT_RULESETS_PATH}" -f emacs \
14+
exec /bin/sh /pmd-bin-6.55.0/bin/run.sh pmd -d "${INPUT_SRC_PATH}" -R "${INPUT_RULESETS_PATH}" -f emacs \
1515
| reviewdog -efm="%f:%l: %m" \
1616
-name="${INPUT_TOOL_NAME}" \
1717
-reporter="${INPUT_REPORTER:-github-pr-check}" \

0 commit comments

Comments
 (0)