Update environment variable for cache reset for consistency (#12455)
This commit is contained in:
parent
01d817cb9f
commit
648cc2d2eb
|
@ -31,9 +31,9 @@ jobs:
|
|||
uses: actions/cache@v2
|
||||
with:
|
||||
path: ~/.cache/pip
|
||||
key: ${{ runner.os }}-pip-td${TIME_PERIOD}-${{ hashFiles('requirements.txt') }}
|
||||
key: ${{ runner.os }}-pip-td${{ env.TIME_PERIOD }}-${{ hashFiles('requirements.txt') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-pip-td${TIME_PERIOD}-
|
||||
${{ runner.os }}-pip-td${{ env.TIME_PERIOD }}-
|
||||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
|
|
Loading…
Reference in New Issue