From 648cc2d2eb35c9c298ce3979202a0669f421e498 Mon Sep 17 00:00:00 2001 From: Aki Nitta Date: Mon, 28 Mar 2022 00:42:01 +0900 Subject: [PATCH] Update environment variable for cache reset for consistency (#12455) --- .github/workflows/docs-checks.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docs-checks.yml b/.github/workflows/docs-checks.yml index 79714bbbb0..c2219479f6 100644 --- a/.github/workflows/docs-checks.yml +++ b/.github/workflows/docs-checks.yml @@ -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: |