From 480d8905164cd02fffff8d0759e8f8ddb1b592c5 Mon Sep 17 00:00:00 2001 From: Stuart Leeks Date: Thu, 8 May 2025 16:23:21 +0000 Subject: [PATCH] Add cache-primary-key, cache-matched-key to main action.yml --- action.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/action.yml b/action.yml index 7af7458..2ab0b31 100644 --- a/action.yml +++ b/action.yml @@ -37,6 +37,10 @@ inputs: outputs: cache-hit: description: 'A boolean value to indicate an exact match was found for the primary key' + cache-primary-key: + description: 'A resolved cache key for which cache match was attempted' + cache-matched-key: + description: 'Key of the cache that was restored, it could either be the primary key on cache-hit or a partial/complete match of one of the restore keys' runs: using: 'node20' main: 'dist/restore/index.js'