From 07d5df631851f2b39f21d4080f8ceed7417df9fb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 3 Jun 2024 21:18:23 +0000 Subject: [PATCH 1/2] Bump karpikpl/pylint-annotation-action in the actions-minor group Bumps the actions-minor group with 1 update: [karpikpl/pylint-annotation-action](https://github.com/karpikpl/pylint-annotation-action). Updates `karpikpl/pylint-annotation-action` from 1.0.0 to 1.0.1 - [Release notes](https://github.com/karpikpl/pylint-annotation-action/releases) - [Commits](https://github.com/karpikpl/pylint-annotation-action/compare/v1.0.0...v1.0.1) --- updated-dependencies: - dependency-name: karpikpl/pylint-annotation-action dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions-minor ... Signed-off-by: dependabot[bot] --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 227407e..41f69c1 100644 --- a/action.yml +++ b/action.yml @@ -51,7 +51,7 @@ runs: echo "exitcode=$TASK_EXIT_CODE" >> $GITHUB_OUTPUT - name: Annotate Commit with Pylint Results - uses: karpikpl/pylint-annotation-action@v1.0.0 + uses: karpikpl/pylint-annotation-action@v1.0.1 id: pylint-annotation with: head-sha: ${{ steps.changed_files.outputs.head_sha || github.sha }} From afeabc5e6fcc83a1e67296a8bfc071758105a72c Mon Sep 17 00:00:00 2001 From: Piotr Karpala Date: Mon, 3 Jun 2024 17:37:48 -0400 Subject: [PATCH 2/2] changing glob expression for pylint --- .gitignore | 4 +++- action.yml | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 4044ec2..49b433d 100644 --- a/.gitignore +++ b/.gitignore @@ -103,4 +103,6 @@ __tests__/runner/* *.code-workspace # Python -.venv \ No newline at end of file +.venv +venv +myenv diff --git a/action.yml b/action.yml index 41f69c1..207d90d 100644 --- a/action.yml +++ b/action.yml @@ -36,7 +36,7 @@ runs: id: pylint shell: bash run: | - { pylint ${{ steps.changed_files.outputs.changed_files || '*.py' }} --output-format=json2:pylint.json,colorized,text:pylint.txt; TASK_EXIT_CODE=$?; } || true + { pylint ${{ steps.changed_files.outputs.changed_files || '**/*.py' }} --output-format=json2:pylint.json,colorized,text:pylint.txt; TASK_EXIT_CODE=$?; } || true { echo "## Pylint"