mirror of
				https://github.com/Swatinem/rust-cache.git
				synced 2025-10-31 09:03:49 +00:00 
			
		
		
		
	Support Cargo.lock format cargo-lock v4 (#211)
Fixed #209 Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>
This commit is contained in:
		
							parent
							
								
									96a8d65dba
								
							
						
					
					
						commit
						8f842c2d45
					
				
							
								
								
									
										2
									
								
								dist/restore/index.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								dist/restore/index.js
									
									
									
									
										vendored
									
									
								
							| @ -88363,7 +88363,7 @@ class CacheConfig { | ||||
|                 try { | ||||
|                     const content = await promises_default().readFile(cargo_lock, { encoding: "utf8" }); | ||||
|                     const parsed = parse(content); | ||||
|                     if (parsed.version !== 3 || !("package" in parsed)) { | ||||
|                     if ((parsed.version !== 3 && parsed.version !== 4) || !("package" in parsed)) { | ||||
|                         // Fallback to caching them as regular file since this action
 | ||||
|                         // can only handle Cargo.lock format version 3
 | ||||
|                         lib_core.warning('Unsupported Cargo.lock format, fallback to caching entire file'); | ||||
|  | ||||
							
								
								
									
										2
									
								
								dist/save/index.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								dist/save/index.js
									
									
									
									
										vendored
									
									
								
							| @ -88363,7 +88363,7 @@ class CacheConfig { | ||||
|                 try { | ||||
|                     const content = await promises_default().readFile(cargo_lock, { encoding: "utf8" }); | ||||
|                     const parsed = parse(content); | ||||
|                     if (parsed.version !== 3 || !("package" in parsed)) { | ||||
|                     if ((parsed.version !== 3 && parsed.version !== 4) || !("package" in parsed)) { | ||||
|                         // Fallback to caching them as regular file since this action
 | ||||
|                         // can only handle Cargo.lock format version 3
 | ||||
|                         core.warning('Unsupported Cargo.lock format, fallback to caching entire file'); | ||||
|  | ||||
| @ -197,7 +197,7 @@ export class CacheConfig { | ||||
|           const content = await fs_promises.readFile(cargo_lock, { encoding: "utf8" }); | ||||
|           const parsed = toml.parse(content); | ||||
| 
 | ||||
|           if (parsed.version !== 3 || !("package" in parsed)) { | ||||
|           if ((parsed.version !== 3 && parsed.version !== 4) || !("package" in parsed)) { | ||||
|             // Fallback to caching them as regular file since this action
 | ||||
|             // can only handle Cargo.lock format version 3
 | ||||
|             core.warning('Unsupported Cargo.lock format, fallback to caching entire file'); | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user