mirror of
https://github.com/taiki-e/install-action.git
synced 2026-05-06 05:00:27 +00:00
codegen: Ignore uv 0.11.9
``` verifying https://github.com/astral-sh/uv/releases/download/0.11.9/uv-x86_64-unknown-linux-musl.tar.gz with gh attestation verify Error: HTTP 404: Not Found (https://api.github.com/repos/astral-sh/uv/attestations/sha256:ac3e5051edbf30613b0f90d1c18d4807fea6b246f37490799fee0c1284a658b2?per_page=30&predicate_type=https://slsa.dev/provenance/v1) ``` https://github.com/astral-sh/uv/issues/19278
This commit is contained in:
@@ -96,7 +96,11 @@ fn main() {
|
||||
semver_version = format!("{default_major_version}.{version}").parse();
|
||||
}
|
||||
}
|
||||
Some((Reverse(semver_version.ok()?), (version, release)))
|
||||
let semver_version = semver_version.ok()?;
|
||||
if base_info.ignore.contains(&semver_version) {
|
||||
return None;
|
||||
}
|
||||
Some((Reverse(semver_version), (version, release)))
|
||||
})
|
||||
.collect();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user