From 8bd7e91bd39d92cd2d69f5d8cf1c32d74f2a5ca4 Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Fri, 7 Mar 2025 09:26:00 +0100 Subject: [PATCH] gha: adjust the variable for deprecation See: https://github.com/mozilla/sccache/issues/2351 --- src/setup.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/setup.ts b/src/setup.ts index e1820a1..d6ad21b 100644 --- a/src/setup.ts +++ b/src/setup.ts @@ -68,7 +68,10 @@ async function setup() { // Expose the gha cache related variable to make it easier for users to // integrate with gha support. - core.exportVariable('ACTIONS_CACHE_URL', process.env.ACTIONS_CACHE_URL || ''); + core.exportVariable( + 'ACTIONS_RESULTS_URL', + process.env.ACTIONS_RESULTS_URL || '' + ); core.exportVariable( 'ACTIONS_RUNTIME_TOKEN', process.env.ACTIONS_RUNTIME_TOKEN || ''