From 5b1ec98a86d112475c376a17c0aa87379d46ae29 Mon Sep 17 00:00:00 2001 From: Josh Lay Date: Sun, 15 Oct 2023 00:30:19 -0500 Subject: [PATCH] pylint workflow: cache pip, update pysetup action --- .github/workflows/pylint.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index 8be26b6..178a118 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -11,9 +11,10 @@ jobs: steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v3 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} + cache: 'pip' - name: Install dependencies run: | sudo apt install -y libsystemd-dev