From 0f7de8b21c75219dfb73fba34dd4d8f008026fd3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 4 Sep 2024 08:28:59 +0200 Subject: [PATCH] Bump actions/download-artifact from 2.1.0 to 4.1.7 in /.github/workflows (#36) * Bump actions/download-artifact from 2.1.0 to 4.1.7 in /.github/workflows Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 2.1.0 to 4.1.7. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v2.1.0...v4.1.7) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yaml | 2 +- tests/test_linter_pickle.py | 6 ++---- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 16856fa..0d9b641 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -179,7 +179,7 @@ jobs: echo "Failed to restore Python venv from cache" exit 1 - name: Download all coverage artifacts - uses: actions/download-artifact@v2.1.0 + uses: actions/download-artifact@v4.1.7 - name: Combine coverage results run: | . venv/bin/activate diff --git a/tests/test_linter_pickle.py b/tests/test_linter_pickle.py index e0dab37..d847e9c 100644 --- a/tests/test_linter_pickle.py +++ b/tests/test_linter_pickle.py @@ -6,12 +6,10 @@ from pylint_plugin_utils import augment_visit, suppress_message -def fake_augmentation_func(*args, **kwargs): - ... +def fake_augmentation_func(*args, **kwargs): ... -def fake_suppress_func(*args, **kwargs): - ... +def fake_suppress_func(*args, **kwargs): ... def test_linter_should_be_pickleable(linter):