From d02b960452cf126d23e77eecfbf0b56622722997 Mon Sep 17 00:00:00 2001 From: Joey Parrish Date: Wed, 13 Oct 2021 12:23:32 -0700 Subject: [PATCH] test: Pin pylint to a specific version in GitHub Actions This should prevent us from failing new pylint rules without any code changes on our part. Change-Id: If8b8c2a180e921cdfc3b99a9e17a798599ebe19b --- .github/workflows/custom-actions/lint-packager/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/custom-actions/lint-packager/action.yaml b/.github/workflows/custom-actions/lint-packager/action.yaml index d0365b6d47..a2969da8b6 100644 --- a/.github/workflows/custom-actions/lint-packager/action.yaml +++ b/.github/workflows/custom-actions/lint-packager/action.yaml @@ -18,7 +18,7 @@ runs: rm git-clang-format echo "::endgroup::" echo "::group::Installing pylint" - python3 -m pip install --upgrade pylint + python3 -m pip install --upgrade pylint==2.8.3 echo "::endgroup::" echo "::group::Check clang-format for C++ sources" # NOTE: --binary forces use of global clang-format (which works) instead