mirror of
				https://github.com/gradle/gradle-build-action.git
				synced 2025-11-04 01:28:56 +08:00 
			
		
		
		
	Prefix cache key with protocol version
This will ensure that incompatiblee cache entries generated by previous action releases will not be used.
This commit is contained in:
		
							
								
								
									
										2
									
								
								dist/main/index.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								dist/main/index.js
									
									
									
									
										vendored
									
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							
							
								
								
									
										2
									
								
								dist/main/index.js.map
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								dist/main/index.js.map
									
									
									
									
										vendored
									
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							
							
								
								
									
										2
									
								
								dist/post/index.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								dist/post/index.js
									
									
									
									
										vendored
									
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							
							
								
								
									
										2
									
								
								dist/post/index.js.map
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								dist/post/index.js.map
									
									
									
									
										vendored
									
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							@@ -18,8 +18,8 @@ export function isCacheDebuggingEnabled(): boolean {
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
function generateCacheKey(cacheName: string): CacheKey {
 | 
			
		||||
    // Prefix can be used to force change all cache keys
 | 
			
		||||
    const cacheKeyPrefix = process.env['CACHE_KEY_PREFIX'] || ''
 | 
			
		||||
    // Prefix can be used to force change all cache keys (defaults to cache protocol version)
 | 
			
		||||
    const cacheKeyPrefix = process.env['CACHE_KEY_PREFIX'] || 'v2-'
 | 
			
		||||
 | 
			
		||||
    // At the most general level, share caches for all executions on the same OS
 | 
			
		||||
    const runnerOs = process.env['RUNNER_OS'] || ''
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user