fix wget command
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 6s
Java Google Checkstyle / Checkstyle Linter (pull_request) Failing after 20s

This commit is contained in:
2026-01-23 23:03:55 -06:00
parent e81ae3f1e7
commit 3e6b44d669

View File

@@ -41,8 +41,9 @@ jobs:
- name: 'Run Checkstyle with Reviewdog'
if: steps.changed-files.outputs.any_changed == 'true'
run: |
wget wget https://github.com/checkstyle/checkstyle/releases/download/checkstyle-${{ env.CHECKSTYLE_VERSION }}/checkstyle-${{ env.CHECKSTYLE_VERSION }}-all.jar
wget https://github.com/checkstyle/checkstyle/releases/download/checkstyle-${{ env.CHECKSTYLE_VERSION }}/checkstyle-${{ env.CHECKSTYLE_VERSION }}-all.jar
echo "Changed files:"
echo "${{ steps.changed-files.outputs.all_changed_files }}"
java -jar checkstyle-${{ env.CHECKSTYLE_VERSION }}-all.jar -c google_checks.xml -f xml ${{ steps.changed-files.outputs.all_changed_files }} \