From 5a43a2af5a2d96a339863a5a06309db90f60597f Mon Sep 17 00:00:00 2001 From: James Maslek Date: Tue, 13 Dec 2022 05:14:18 -0500 Subject: [PATCH] Update actions cache (#3768) * Update key/restore keys * oops * drop env.cache-name Co-authored-by: DidierRLopes --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 14b2e41fd621..ca59c8641dfb 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -25,8 +25,8 @@ jobs: - uses: actions/cache@v3 with: path: ~/.cache/pip - key: ${{ runner.os }}-v1-linting - restore-keys: ${{ runner.os }}-v1-linting + key: ${{ runner.os }}-linting-${{ hashFiles('**/poetry.lock') }} + restore-keys: ${{ runner.os }}-linting-${{ hashFiles('**/poetry.lock') }} - run: pip install bandit black codespell flake8 mypy==0.982 pyupgrade safety pylint==2.15.2 packaging==22 - run: pip install types-pytz types-requests types-termcolor types-tabulate types-PyYAML types-python-dateutil types-setuptools types-six