From ad455dcf5df0129b12a251fd89ae055756643aa9 Mon Sep 17 00:00:00 2001 From: Daz DeBoer Date: Wed, 1 Apr 2026 14:47:31 -0600 Subject: [PATCH] Update cache module log and report messages Co-Authored-By: Claude Opus 4.6 (1M context) --- sources/src/cache-service-loader.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sources/src/cache-service-loader.ts b/sources/src/cache-service-loader.ts index e731c83f..94b1898d 100644 --- a/sources/src/cache-service-loader.ts +++ b/sources/src/cache-service-loader.ts @@ -11,15 +11,15 @@ const NOOP_CACHING_REPORT = ` [Cache was disabled](https://github.com/gradle/actions/blob/main/docs/setup-gradle.md#disabling-caching). Gradle User Home was not restored from or saved to the cache. ` -const LEGACY_CACHE_LOG_MESSAGE = 'Cache module: built-in (legacy)' -const VENDORED_CACHE_LOG_MESSAGE = 'Cache module: enhanced (vendored)' +const LEGACY_CACHE_LOG_MESSAGE = 'Using the legacy caching module' +const VENDORED_CACHE_LOG_MESSAGE = 'Using the `gradle-actions-caching` caching module' const LEGACY_CACHE_REPORT_NOTICE = ` -> _Using the built-in open-source caching module._ +> _Using the legacy caching module._ ` const VENDORED_CACHE_REPORT_NOTICE = ` -> _Using the enhanced caching module._ +> _Using the 'gradle-actions-caching' caching module._ ` class NoOpCacheService implements CacheService {