From 51d4fe01c33323b32227a2f18b5f75180583da9e Mon Sep 17 00:00:00 2001 From: Sebastian Date: Tue, 18 Oct 2022 17:36:25 +0200 Subject: [PATCH] fix: Update env variable for model caching timeout (#3405) * fix: Update env variable for model caching timeout The environment variable used to set the timeout for the model caching step had a typo in it from the maintainers of `actions/cache@v3`, which is why it has not been working (see comment [here](https://github.com/actions/cache/issues/810#issuecomment-1281895575)). * Removed newline --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 669d3b14d..7de575d11 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -682,7 +682,7 @@ jobs: path: ~/.cache/huggingface/transformers/ key: hf-models env: - SEGMENT_DOWNLOAD_TIMEOUT_MIN: 15 + SEGMENT_DOWNLOAD_TIMEOUT_MINS: 15 - name: Download models if: steps.cache-hf-models.outputs.cache-hit != 'true'