From eb0c171c22420cca384e77149ff082580e704dcf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C4=93teris=20Caune?= Date: Fri, 20 Nov 2020 23:04:47 +0200 Subject: [PATCH] Add name for the cache step --- .github/workflows/django.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/django.yml b/.github/workflows/django.yml index 5ba12c7d..91076d2e 100644 --- a/.github/workflows/django.yml +++ b/.github/workflows/django.yml @@ -51,7 +51,8 @@ jobs: uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - - uses: actions/cache@v2 + - name: Restore pip Cache + uses: actions/cache@v2 with: path: ~/.cache/pip key: ${{ runner.os }}-${{ matrix.python-version }}-pip-${{ hashFiles('**/requirements.txt') }}