3
0
Fork 0
mirror of https://github.com/Swatinem/rust-cache synced 2025-04-11 15:13:35 +00:00

Support Cargo.lock format cargo-lock v4

Fixed #209

Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>
This commit is contained in:
Jiahao XU 2024-10-09 00:52:04 +11:00
parent 96a8d65dba
commit 0d5ebfd17a
No known key found for this signature in database
GPG key ID: 76D1E687CA3C4928
3 changed files with 3 additions and 3 deletions

View file

@ -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
View file

@ -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');

View 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');