Update environment variable for cache reset for consistency (#12455)

This commit is contained in:
Aki Nitta 2022-03-28 00:42:01 +09:00 committed by GitHub
parent 01d817cb9f
commit 648cc2d2eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -31,9 +31,9 @@ jobs:
uses: actions/cache@v2 uses: actions/cache@v2
with: with:
path: ~/.cache/pip 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: | restore-keys: |
${{ runner.os }}-pip-td${TIME_PERIOD}- ${{ runner.os }}-pip-td${{ env.TIME_PERIOD }}-
- name: Install dependencies - name: Install dependencies
run: | run: |