mirror of
https://github.com/gradle/gradle-build-action.git
synced 2025-04-05 21:04:15 +02:00
Rename cache-metadata file and bump protocol version
This commit is contained in:
parent
201b58add4
commit
cfe43efa8c
2 changed files with 4 additions and 3 deletions
|
@ -3,7 +3,7 @@ import * as cache from '@actions/cache'
|
|||
import * as github from '@actions/github'
|
||||
import {isCacheDebuggingEnabled, getCacheKeyPrefix, hashStrings, handleCacheFailure} from './cache-utils'
|
||||
|
||||
const CACHE_PROTOCOL_VERSION = 'v4-'
|
||||
const CACHE_PROTOCOL_VERSION = 'v5-'
|
||||
const JOB_CONTEXT_PARAMETER = 'workflow-job-context'
|
||||
|
||||
function generateCacheKey(cacheName: string): CacheKey {
|
||||
|
|
|
@ -9,6 +9,7 @@ import {AbstractCache, CacheEntryListener, CacheListener} from './cache-base'
|
|||
import {getCacheKeyPrefix, hashFileNames, tryDelete} from './cache-utils'
|
||||
|
||||
const META_FILE_DIR = '.gradle-build-action'
|
||||
const META_FILE = 'cache-metadata.json'
|
||||
|
||||
const INCLUDE_PATHS_PARAMETER = 'gradle-home-cache-includes'
|
||||
const EXCLUDE_PATHS_PARAMETER = 'gradle-home-cache-excludes'
|
||||
|
@ -178,7 +179,7 @@ export class GradleUserHomeCache extends AbstractCache {
|
|||
}
|
||||
|
||||
private loadBundleMetadata(): Map<string, string> {
|
||||
const bundleMetaFile = path.resolve(this.gradleUserHome, META_FILE_DIR, 'bundles.json')
|
||||
const bundleMetaFile = path.resolve(this.gradleUserHome, META_FILE_DIR, META_FILE)
|
||||
if (!fs.existsSync(bundleMetaFile)) {
|
||||
return new Map<string, string>()
|
||||
}
|
||||
|
@ -198,7 +199,7 @@ export class GradleUserHomeCache extends AbstractCache {
|
|||
core.debug(`Saving bundle metadata: ${filedata}`)
|
||||
|
||||
const bundleMetaDir = path.resolve(this.gradleUserHome, META_FILE_DIR)
|
||||
const bundleMetaFile = path.resolve(bundleMetaDir, 'bundles.json')
|
||||
const bundleMetaFile = path.resolve(bundleMetaDir, META_FILE)
|
||||
|
||||
if (!fs.existsSync(bundleMetaDir)) {
|
||||
fs.mkdirSync(bundleMetaDir, {recursive: true})
|
||||
|
|
Loading…
Add table
Reference in a new issue