From c231b4e8c0597efc70eaca853a643bcdc16d8bbb Mon Sep 17 00:00:00 2001 From: Penelope Yong Date: Tue, 1 Apr 2025 16:08:42 +0100 Subject: [PATCH] Output cache-paths and cache-key as well (#169) --- action.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/action.yml b/action.yml index 9f36d62..15e8697 100644 --- a/action.yml +++ b/action.yml @@ -47,6 +47,12 @@ outputs: cache-hit: description: A boolean value to indicate an exact match was found for the primary key. Returns "" when the key is new. Forwarded from actions/cache. value: ${{ steps.hit.outputs.cache-hit }} + cache-paths: + description: The paths that were cached + value: ${{ steps.paths.outputs.cache-paths }} + cache-key: + description: The full cache key used + value: ${{ steps.keys.outputs.key }} runs: using: 'composite'