Update cache module log and report messages

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Daz DeBoer
2026-04-01 14:47:31 -06:00
parent 8236123cab
commit ad455dcf5d
+4 -4
View File
@@ -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 {