mirror of
https://github.com/taiki-e/install-action.git
synced 2026-04-28 10:00:26 +00:00
Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ca079cf073 | ||
|
|
df8c31f9bf | ||
|
|
45e0b9c640 | ||
|
|
9e8985f3cd | ||
|
|
ce24374b73 | ||
|
|
137568b070 | ||
|
|
32cafa544d | ||
|
|
df4e2c5813 | ||
|
|
6662e50b58 |
22
CHANGELOG.md
22
CHANGELOG.md
@@ -10,6 +10,22 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [2.45.3] - 2024-11-21
|
||||
|
||||
- Update `just@latest` to 1.37.0.
|
||||
|
||||
## [2.45.2] - 2024-11-20
|
||||
|
||||
- Update `wasmtime@latest` to 27.0.0.
|
||||
|
||||
## [2.45.1] - 2024-11-20
|
||||
|
||||
- Update `git-cliff@latest` to 2.7.0.
|
||||
|
||||
## [2.45.0] - 2024-11-19
|
||||
|
||||
- Support `cargo-auditable`. ([#741](https://github.com/taiki-e/install-action/pull/741), thanks @simonsan)
|
||||
|
||||
## [2.44.72] - 2024-11-19
|
||||
|
||||
- Update `cargo-dinghy@latest` to 0.8.0.
|
||||
@@ -3084,7 +3100,11 @@ Note: This release is considered a breaking change because installing on version
|
||||
|
||||
Initial release
|
||||
|
||||
[Unreleased]: https://github.com/taiki-e/install-action/compare/v2.44.72...HEAD
|
||||
[Unreleased]: https://github.com/taiki-e/install-action/compare/v2.45.3...HEAD
|
||||
[2.45.3]: https://github.com/taiki-e/install-action/compare/v2.45.2...v2.45.3
|
||||
[2.45.2]: https://github.com/taiki-e/install-action/compare/v2.45.1...v2.45.2
|
||||
[2.45.1]: https://github.com/taiki-e/install-action/compare/v2.45.0...v2.45.1
|
||||
[2.45.0]: https://github.com/taiki-e/install-action/compare/v2.44.72...v2.45.0
|
||||
[2.44.72]: https://github.com/taiki-e/install-action/compare/v2.44.71...v2.44.72
|
||||
[2.44.71]: https://github.com/taiki-e/install-action/compare/v2.44.70...v2.44.71
|
||||
[2.44.70]: https://github.com/taiki-e/install-action/compare/v2.44.69...v2.44.70
|
||||
|
||||
1
TOOLS.md
1
TOOLS.md
@@ -13,6 +13,7 @@ See the [Supported tools section in README.md](README.md#supported-tools) for ho
|
||||
| ---- | -------------------------------- | ------------------------------- | ------------------ | ------- |
|
||||
| [**biome**](https://biomejs.dev) | `$HOME/.install-action/bin` | [GitHub Releases](https://github.com/biomejs/biome/releases) | Linux, macOS, Windows | [Apache-2.0](https://github.com/biomejs/biome/blob/main/LICENSE-APACHE) OR [MIT](https://github.com/biomejs/biome/blob/main/LICENSE-MIT) |
|
||||
| [**cargo-audit**](https://github.com/rustsec/rustsec/tree/HEAD/cargo-audit) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/rustsec/rustsec/releases) | Linux, macOS, Windows | [Apache-2.0](https://github.com/rustsec/rustsec/blob/HEAD/cargo-audit/LICENSE-APACHE) OR [MIT](https://github.com/rustsec/rustsec/blob/HEAD/cargo-audit/LICENSE-MIT) |
|
||||
| [**cargo-auditable**](https://github.com/rust-secure-code/cargo-auditable) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/rust-secure-code/cargo-auditable/releases) | Linux, macOS, Windows | [Apache-2.0](https://github.com/rust-secure-code/cargo-auditable/blob/HEAD/LICENSE-APACHE) OR [MIT](https://github.com/rust-secure-code/cargo-auditable/blob/HEAD/LICENSE-MIT) |
|
||||
| [**cargo-binstall**](https://github.com/cargo-bins/cargo-binstall) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/cargo-bins/cargo-binstall/releases) | Linux, macOS, Windows | [GPL-3.0](https://github.com/cargo-bins/cargo-binstall/blob/HEAD/crates/bin/LICENSE) |
|
||||
| [**cargo-careful**](https://github.com/RalfJung/cargo-careful) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/RalfJung/cargo-careful/releases) | Linux, macOS, Windows | [MIT](https://github.com/RalfJung/cargo-careful/blob/master/LICENSE-MIT) OR [Apache-2.0](https://github.com/RalfJung/cargo-careful/blob/master/LICENSE-APACHE) |
|
||||
| [**cargo-cyclonedx**](https://github.com/CycloneDX/cyclonedx-rust-cargo) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/CycloneDX/cyclonedx-rust-cargo/releases) | Linux, macOS, Windows | [Apache-2.0](https://github.com/CycloneDX/cyclonedx-rust-cargo/blob/main/LICENSE) |
|
||||
|
||||
2
main.sh
2
main.sh
@@ -790,7 +790,7 @@ for tool in "${tools[@]}"; do
|
||||
# wait-for-them up to 0.4.0 does not support --version flag.
|
||||
biome | cargo-machete | wait-for-them) rx "${tool_bin_stem}" --version || true ;;
|
||||
# these packages support neither --version nor --help flag.
|
||||
cargo-careful | wasm-bindgen-test-runner) ;;
|
||||
cargo-auditable | cargo-careful | wasm-bindgen-test-runner) ;;
|
||||
# wasm2es6js does not support --version flag and --help flag doesn't contains version info.
|
||||
wasm2es6js) ;;
|
||||
# cargo-zigbuild has no --version flag on `cargo zigbuild` subcommand.
|
||||
|
||||
64
manifests/cargo-auditable.json
generated
Normal file
64
manifests/cargo-auditable.json
generated
Normal file
@@ -0,0 +1,64 @@
|
||||
{
|
||||
"rust_crate": "cargo-auditable",
|
||||
"template": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/rust-secure-code/cargo-auditable/releases/download/v${version}/cargo-auditable-x86_64-unknown-linux-musl.tar.xz",
|
||||
"bin": "cargo-auditable-x86_64-unknown-linux-musl/cargo-auditable"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/rust-secure-code/cargo-auditable/releases/download/v${version}/cargo-auditable-x86_64-apple-darwin.tar.xz",
|
||||
"bin": "cargo-auditable-x86_64-apple-darwin/cargo-auditable"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/rust-secure-code/cargo-auditable/releases/download/v${version}/cargo-auditable-x86_64-pc-windows-msvc.zip",
|
||||
"bin": "cargo-auditable.exe"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/rust-secure-code/cargo-auditable/releases/download/v${version}/cargo-auditable-aarch64-apple-darwin.tar.xz",
|
||||
"bin": "cargo-auditable-aarch64-apple-darwin/cargo-auditable"
|
||||
}
|
||||
},
|
||||
"license_markdown": "[Apache-2.0](https://github.com/rust-secure-code/cargo-auditable/blob/HEAD/LICENSE-APACHE) OR [MIT](https://github.com/rust-secure-code/cargo-auditable/blob/HEAD/LICENSE-MIT)",
|
||||
"latest": {
|
||||
"version": "0.6.5"
|
||||
},
|
||||
"0.6": {
|
||||
"version": "0.6.5"
|
||||
},
|
||||
"0.6.5": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DD026635663221",
|
||||
"checksum": "1c8f1079d49ec7d29c134ed5e833c56552391db2eb8968a5a8e3cffebb160454"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DD0266371D1878",
|
||||
"checksum": "6b7f9ae0eb0a70ab01fe37f776e901f86f22a270491944db1f169b6cc2a6162c"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DD026636A97BCE",
|
||||
"checksum": "4aa3d953cb90c177a46e5c70cbb4050e2e06d756cfd14a0d6fd28daf7d38967b"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DD02663824ADB8",
|
||||
"checksum": "635fe55a50e6dbb65caa1e45b5703c75a1a00a5dadddf40862c7e91012b06f94"
|
||||
}
|
||||
},
|
||||
"0.6.4": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DC7C39FA3B2719",
|
||||
"checksum": "e75d161e101be7f501e71e9dddd3f0c823e6776a45f884340ad42ec268321ea3"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DC7C39FB75C7E7",
|
||||
"checksum": "02572f75d434ea03da5eac8b82230e4b3b9e2974549e22092bccb1ef92ac28ef"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DC7C39FB1638FE",
|
||||
"checksum": "ea452ae7d3dbc2dd1f747861245be8fd6740da12b351f65c59a212df370b144c"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DC7C39FC410D14",
|
||||
"checksum": "02e0faa19a9e9ceee43f83b2b557c536624a0c868307b9b2b3a5f617ef3b7cfb"
|
||||
}
|
||||
}
|
||||
}
|
||||
33
manifests/git-cliff.json
generated
33
manifests/git-cliff.json
generated
@@ -28,10 +28,39 @@
|
||||
},
|
||||
"license_markdown": "[MIT](https://github.com/orhun/git-cliff/blob/main/LICENSE-MIT) OR [Apache-2.0](https://github.com/orhun/git-cliff/blob/main/LICENSE-APACHE)",
|
||||
"latest": {
|
||||
"version": "2.6.1"
|
||||
"version": "2.7.0"
|
||||
},
|
||||
"2": {
|
||||
"version": "2.6.1"
|
||||
"version": "2.7.0"
|
||||
},
|
||||
"2.7": {
|
||||
"version": "2.7.0"
|
||||
},
|
||||
"2.7.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DD0952B0DB39CC",
|
||||
"checksum": "54360b4fb80d2a8e50c2a605517d7b6a435dd2a37db70579781a0598f45a3062"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DD0952630F624A",
|
||||
"checksum": "0ef07ded47fd4a4f9a704341d10e9bc3daef7054bae49d20ce4c76cb4bd01092"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DD0953277A3FD1",
|
||||
"checksum": "3afecbfb8b2a1145f6321fa6fc6bf0fabb8dff5dd7fa1bfa46bafa9f7484f47c"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DD0952A53E4C8D",
|
||||
"checksum": "64db75d63e8f43ea830836bc110bebc1d80a5fe86d0e9a700a7350eb748fe9f6"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DD095260B5EEE0",
|
||||
"checksum": "3c67edc958a8209c30c86de22a4aa0bac1a1d554481f647aa9a7fe304a3339ed"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DD095334EDFA8D",
|
||||
"checksum": "3020caa170c7c63517bfb16a9ae142b493bdd35903ccd4663509aa7e231aa7c0"
|
||||
}
|
||||
},
|
||||
"2.6": {
|
||||
"version": "2.6.1"
|
||||
|
||||
29
manifests/just.json
generated
29
manifests/just.json
generated
@@ -19,10 +19,35 @@
|
||||
},
|
||||
"license_markdown": "[CC0-1.0](https://github.com/casey/just/blob/master/LICENSE)",
|
||||
"latest": {
|
||||
"version": "1.36.0"
|
||||
"version": "1.37.0"
|
||||
},
|
||||
"1": {
|
||||
"version": "1.36.0"
|
||||
"version": "1.37.0"
|
||||
},
|
||||
"1.37": {
|
||||
"version": "1.37.0"
|
||||
},
|
||||
"1.37.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DD09AFEAC870E8",
|
||||
"checksum": "9e301da1a46153b4c9adf9efe20d05361467b5591b1b3cf8880db59a1d019963"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DD09AFF022729B",
|
||||
"checksum": "be9b503be9c50a280b92431035adc20a64a84dd1889f97b4e2f2844c77650fc7"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DD09B0518B8377",
|
||||
"checksum": "fc62b5dc04e103de15e04caeeb0398d286129353ff24302dd5e4da1fbd7badac"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DD09AFF2DC5D3D",
|
||||
"checksum": "96a75ed35ef2cb227d921fa71cd8c8dfb5828ca197e2740ca8626546d393b04e"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DD09AFE5108C4F",
|
||||
"checksum": "613a7c96398fcccc2a5334a63bb525e865e74abee28d0df1869824a8c0c0dbeb"
|
||||
}
|
||||
},
|
||||
"1.36": {
|
||||
"version": "1.36.0"
|
||||
|
||||
34
manifests/wasmtime.json
generated
34
manifests/wasmtime.json
generated
@@ -28,7 +28,39 @@
|
||||
},
|
||||
"license_markdown": "[Apache-2.0 WITH LLVM-exception](https://github.com/bytecodealliance/wasmtime/blob/main/LICENSE)",
|
||||
"latest": {
|
||||
"version": "26.0.1"
|
||||
"version": "27.0.0"
|
||||
},
|
||||
"27": {
|
||||
"version": "27.0.0"
|
||||
},
|
||||
"27.0": {
|
||||
"version": "27.0.0"
|
||||
},
|
||||
"27.0.0": {
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DD097F1EE2EA9F",
|
||||
"checksum": "74678f6ec49d8b858ca5181d5492b967245f6c072b5763ea14a75eee1ad3c2d7"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DD097F20045326",
|
||||
"checksum": "286a2bd9dec59ade83ee9440f2034843309e00dc5895b135bf5fcf182733a486"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DD097F24CA1174",
|
||||
"checksum": "fc75d3cae018ab433387d72487b2d111c4614c0442ab7941b67ad49ce3631b60"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"etag": "0x8DD097F147C8338",
|
||||
"checksum": "b4b5a47d4856e508a20d6ba6aeb32444fdaaa13771f1794b19e7f56fa6ef8d3a"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DD097F15BFF367",
|
||||
"checksum": "c908ea6dd7638f5d2bba057a51f13e6c90bbe28105704a7d6691438bc95491a3"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DD097F17166118",
|
||||
"checksum": "a13d88ada8ba76129305f6d162d87598279718bc10f385ccce23533212f76fdd"
|
||||
}
|
||||
},
|
||||
"26": {
|
||||
"version": "26.0.1"
|
||||
|
||||
17
tools/codegen/base/cargo-auditable.json
Normal file
17
tools/codegen/base/cargo-auditable.json
Normal file
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"repository": "https://github.com/rust-secure-code/cargo-auditable",
|
||||
"license_markdown": "[Apache-2.0](https://github.com/rust-secure-code/cargo-auditable/blob/HEAD/LICENSE-APACHE) OR [MIT](https://github.com/rust-secure-code/cargo-auditable/blob/HEAD/LICENSE-MIT)",
|
||||
"tag_prefix": "v",
|
||||
"rust_crate": "${package}",
|
||||
"asset_name": "${package}-${rust_target}.tar.xz",
|
||||
"bin": "${package}-${rust_target}/${package}${exe}",
|
||||
"platform": {
|
||||
"x86_64_linux_musl": {},
|
||||
"x86_64_macos": {},
|
||||
"x86_64_windows": {
|
||||
"asset_name": "${package}-${rust_target}.zip",
|
||||
"bin": "${package}${exe}"
|
||||
},
|
||||
"aarch64_macos": {}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user