Skip to content

Commit 0fb8e0f

Browse files
committed
fix: Syntax of the TF_PLUGIN_CACHE_DIR env for cache-dependencies
1 parent be4f65a commit 0fb8e0f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ runs:
278278
id: restore_cache
279279
name: restore_cache
280280
with:
281-
path: $TF_PLUGIN_CACHE_DIR
281+
path: ${{ env.TF_PLUGIN_CACHE_DIR }}
282282
key: digger-cache
283283
restore-keys: |
284284
digger-cache
@@ -458,7 +458,7 @@ runs:
458458
name: cache-save
459459
if: ${{ always() && inputs.cache-dependencies == 'true' && steps.restore_cache.outputs.cache-hit != 'true' }}
460460
with:
461-
path: $TF_PLUGIN_CACHE_DIR
461+
path: ${{ env.TF_PLUGIN_CACHE_DIR }}
462462
key: digger-cache-${{ hashFiles('**/cache') }}
463463

464464
branding:

0 commit comments

Comments
 (0)