mirror of
https://github.com/taiki-e/install-action.git
synced 2026-04-28 18:10:26 +00:00
Compare commits
14 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
85c1f06374 | ||
|
|
ee9bdd084f | ||
|
|
9c04113bd6 | ||
|
|
e0464ce993 | ||
|
|
76b1741cb5 | ||
|
|
c6dc131d2c | ||
|
|
92585e4f79 | ||
|
|
32a9cb44cb | ||
|
|
662c1dd6eb | ||
|
|
d2493298e2 | ||
|
|
de6c293a01 | ||
|
|
e72b7b51a2 | ||
|
|
f03dfcdb2e | ||
|
|
b87988c02c |
29
CHANGELOG.md
29
CHANGELOG.md
@@ -10,6 +10,28 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [2.44.69] - 2024-11-14
|
||||||
|
|
||||||
|
- Update `release-plz@latest` to 0.3.108.
|
||||||
|
|
||||||
|
## [2.44.68] - 2024-11-12
|
||||||
|
|
||||||
|
- Update `hyperfine@latest` to 1.19.0.
|
||||||
|
|
||||||
|
- Update `cargo-binstall@latest` to 1.10.12.
|
||||||
|
|
||||||
|
## [2.44.67] - 2024-11-08
|
||||||
|
|
||||||
|
- Update `typos@latest` to 1.27.3.
|
||||||
|
|
||||||
|
## [2.44.66] - 2024-11-08
|
||||||
|
|
||||||
|
- Update `release-plz@latest` to 0.3.107.
|
||||||
|
|
||||||
|
## [2.44.65] - 2024-11-08
|
||||||
|
|
||||||
|
- Update `cargo-lambda@latest` to 1.5.0.
|
||||||
|
|
||||||
## [2.44.64] - 2024-11-07
|
## [2.44.64] - 2024-11-07
|
||||||
|
|
||||||
- Update `mdbook@latest` to 0.4.42.
|
- Update `mdbook@latest` to 0.4.42.
|
||||||
@@ -3046,7 +3068,12 @@ Note: This release is considered a breaking change because installing on version
|
|||||||
|
|
||||||
Initial release
|
Initial release
|
||||||
|
|
||||||
[Unreleased]: https://github.com/taiki-e/install-action/compare/v2.44.64...HEAD
|
[Unreleased]: https://github.com/taiki-e/install-action/compare/v2.44.69...HEAD
|
||||||
|
[2.44.69]: https://github.com/taiki-e/install-action/compare/v2.44.68...v2.44.69
|
||||||
|
[2.44.68]: https://github.com/taiki-e/install-action/compare/v2.44.67...v2.44.68
|
||||||
|
[2.44.67]: https://github.com/taiki-e/install-action/compare/v2.44.66...v2.44.67
|
||||||
|
[2.44.66]: https://github.com/taiki-e/install-action/compare/v2.44.65...v2.44.66
|
||||||
|
[2.44.65]: https://github.com/taiki-e/install-action/compare/v2.44.64...v2.44.65
|
||||||
[2.44.64]: https://github.com/taiki-e/install-action/compare/v2.44.63...v2.44.64
|
[2.44.64]: https://github.com/taiki-e/install-action/compare/v2.44.63...v2.44.64
|
||||||
[2.44.63]: https://github.com/taiki-e/install-action/compare/v2.44.62...v2.44.63
|
[2.44.63]: https://github.com/taiki-e/install-action/compare/v2.44.62...v2.44.63
|
||||||
[2.44.62]: https://github.com/taiki-e/install-action/compare/v2.44.61...v2.44.62
|
[2.44.62]: https://github.com/taiki-e/install-action/compare/v2.44.61...v2.44.62
|
||||||
|
|||||||
6
main.sh
6
main.sh
@@ -787,12 +787,16 @@ for tool in "${tools[@]}"; do
|
|||||||
case "${tool_bin_stem}" in
|
case "${tool_bin_stem}" in
|
||||||
# biome up to 1.2.2 exits with 1 on both --version and --help flags.
|
# biome up to 1.2.2 exits with 1 on both --version and --help flags.
|
||||||
# cargo-machete up to 0.6.0 does not support --version flag.
|
# cargo-machete up to 0.6.0 does not support --version flag.
|
||||||
# wait-for-them 0.4.0 exits with 1 on both --version and --help flags.
|
# 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 ;;
|
biome | cargo-machete | wait-for-them) rx "${tool_bin_stem}" --version || true ;;
|
||||||
# these packages support neither --version nor --help flag.
|
# these packages support neither --version nor --help flag.
|
||||||
cargo-careful | wasm-bindgen-test-runner) ;;
|
cargo-careful | wasm-bindgen-test-runner) ;;
|
||||||
# wasm2es6js does not support --version flag and --help flag doesn't contains version info.
|
# wasm2es6js does not support --version flag and --help flag doesn't contains version info.
|
||||||
wasm2es6js) ;;
|
wasm2es6js) ;;
|
||||||
|
# cargo-zigbuild has no --version flag on `cargo zigbuild` subcommand.
|
||||||
|
cargo-zigbuild) rx "${tool_bin_stem}" --version ;;
|
||||||
|
# deepsource has version command instead of --version flag.
|
||||||
|
deepsource) rx "${tool_bin_stem}" version ;;
|
||||||
cargo-*)
|
cargo-*)
|
||||||
case "${tool_bin_stem}" in
|
case "${tool_bin_stem}" in
|
||||||
# cargo-valgrind 2.1.0's --version flag just calls cargo's --version flag
|
# cargo-valgrind 2.1.0's --version flag just calls cargo's --version flag
|
||||||
|
|||||||
28
manifests/cargo-binstall.json
generated
28
manifests/cargo-binstall.json
generated
@@ -22,32 +22,32 @@
|
|||||||
},
|
},
|
||||||
"license_markdown": "[GPL-3.0](https://github.com/cargo-bins/cargo-binstall/blob/HEAD/crates/bin/LICENSE)",
|
"license_markdown": "[GPL-3.0](https://github.com/cargo-bins/cargo-binstall/blob/HEAD/crates/bin/LICENSE)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "1.10.11"
|
"version": "1.10.12"
|
||||||
},
|
},
|
||||||
"1.10.11": {
|
"1.10.12": {
|
||||||
"x86_64_linux_musl": {
|
"x86_64_linux_musl": {
|
||||||
"etag": "0x8DCFDDD362609B5",
|
"etag": "0x8DD00A2C666B380",
|
||||||
"checksum": "a81e0d53a6e9f45cba974a93a0dd8fe42f3acb4119b5eb99d47d49fe967e90dc"
|
"checksum": "f427555fc1bb271d3d2b2b1b50e52723df85ef3205420a1642b16d85b7a104a8"
|
||||||
},
|
},
|
||||||
"x86_64_macos": {
|
"x86_64_macos": {
|
||||||
"etag": "0x8DCFDDCA8B181CC",
|
"etag": "0x8DD00A24B2B0205",
|
||||||
"checksum": "0d206d9da36afb53b00673e05157296f4269f83a5c770d8dbc29391eb77df927"
|
"checksum": "fa585cf2214d7d701e32a6afd68a82f720857d3bdc7c5140877711dbd84c90e3"
|
||||||
},
|
},
|
||||||
"x86_64_windows": {
|
"x86_64_windows": {
|
||||||
"etag": "0x8DCFDDDD5572596",
|
"etag": "0x8DD00A2FF44CE5F",
|
||||||
"checksum": "6e12c52f8cbc4ac77dffa37b44d5ffce75be6b05c6b78bd4f7d818926de15c0f"
|
"checksum": "e503db82ee7e7f24082bc254406fe1ce72841ed46a58623f3e10790bb37a347b"
|
||||||
},
|
},
|
||||||
"aarch64_linux_musl": {
|
"aarch64_linux_musl": {
|
||||||
"etag": "0x8DCFDDCC704C4F5",
|
"etag": "0x8DD00A25877DAA1",
|
||||||
"checksum": "e37e564e0d2992b1bb282805fa839fc9a1ffde698c35b66af58a0d23f537af30"
|
"checksum": "83b2b803fa1818959d6cd813569b3f2e8949ed5b3a676f57f35ab7dd7e3994be"
|
||||||
},
|
},
|
||||||
"aarch64_macos": {
|
"aarch64_macos": {
|
||||||
"etag": "0x8DCFDDCEDE668B7",
|
"etag": "0x8DD00A28DB4A836",
|
||||||
"checksum": "309ba5b82dec67dc5e3ead82487921447cf5d72ecfb3a9531551f09e3a507202"
|
"checksum": "f6a14420a6fcf23cfc8b8716175066b8d51001bd6bccc295ae9e440717e5b62e"
|
||||||
},
|
},
|
||||||
"aarch64_windows": {
|
"aarch64_windows": {
|
||||||
"etag": "0x8DCFDDD96C0243C",
|
"etag": "0x8DD00A312BD798D",
|
||||||
"checksum": "ae1c2e0e05ed818419f077d89322047089fc65b5a0718f8ca6f7ea301e35254b"
|
"checksum": "7abca3d4aa5f50c51115edb65d374f711c87d74bb7647d38797204a99e50f69e"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
29
manifests/cargo-lambda.json
generated
29
manifests/cargo-lambda.json
generated
@@ -20,10 +20,35 @@
|
|||||||
},
|
},
|
||||||
"license_markdown": "[MIT](https://github.com/cargo-lambda/cargo-lambda/blob/main/LICENSE)",
|
"license_markdown": "[MIT](https://github.com/cargo-lambda/cargo-lambda/blob/main/LICENSE)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "1.4.0"
|
"version": "1.5.0"
|
||||||
},
|
},
|
||||||
"1": {
|
"1": {
|
||||||
"version": "1.4.0"
|
"version": "1.5.0"
|
||||||
|
},
|
||||||
|
"1.5": {
|
||||||
|
"version": "1.5.0"
|
||||||
|
},
|
||||||
|
"1.5.0": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DCFF7CBD1DC45E",
|
||||||
|
"checksum": "c23a50b7f53bcfee090e514e38d4e76d9fa9d68a92e72163dd017589f0a2da01"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DCFF7CBDBCAD25",
|
||||||
|
"checksum": "f5d25ae304efeb4ef6a625274532ee17606b8ab6007096790e598d8d9de35b55"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DCFF7CBEDDA14B",
|
||||||
|
"checksum": "98a354009332ceb6696299a01f9322695df56d71620a21701f8ca6783504de2e"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"etag": "0x8DCFF7CC148B532",
|
||||||
|
"checksum": "e3497a2980ac8f9cf2ae3868cb8998e5c0af8236e69dda06649fe7f6fefed407"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DCFF7CC1E1B11D",
|
||||||
|
"checksum": "720515d6b8922bf9c05d396851590e845b880e6cc3f02f4f6904b5e9eda6e095"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"1.4": {
|
"1.4": {
|
||||||
"version": "1.4.0"
|
"version": "1.4.0"
|
||||||
|
|||||||
10
manifests/cargo-rdme.json
generated
10
manifests/cargo-rdme.json
generated
@@ -21,6 +21,16 @@
|
|||||||
"1.4": {
|
"1.4": {
|
||||||
"version": "1.4.2"
|
"version": "1.4.2"
|
||||||
},
|
},
|
||||||
|
"1.4.7": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DCFF8CF498DEEF",
|
||||||
|
"checksum": "05e30bad3bf5478b7164754574764309a9b3daebbfd83de05a0f00fb39be01dd"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DCFF8D2530DAEA",
|
||||||
|
"checksum": "d398dd69b55f65c568e41b55da001b42f0149e5dd79aaaf54600d0ad264b5e75"
|
||||||
|
}
|
||||||
|
},
|
||||||
"1.4.6": {
|
"1.4.6": {
|
||||||
"x86_64_windows": {
|
"x86_64_windows": {
|
||||||
"etag": "0x8DCFEB4AD6F091D",
|
"etag": "0x8DCFEB4AD6F091D",
|
||||||
|
|||||||
25
manifests/hyperfine.json
generated
25
manifests/hyperfine.json
generated
@@ -20,10 +20,31 @@
|
|||||||
},
|
},
|
||||||
"license_markdown": "[MIT](https://github.com/sharkdp/hyperfine/blob/master/LICENSE-MIT) OR [Apache-2.0](https://github.com/sharkdp/hyperfine/blob/master/LICENSE-APACHE)",
|
"license_markdown": "[MIT](https://github.com/sharkdp/hyperfine/blob/master/LICENSE-MIT) OR [Apache-2.0](https://github.com/sharkdp/hyperfine/blob/master/LICENSE-APACHE)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "1.18.0"
|
"version": "1.19.0"
|
||||||
},
|
},
|
||||||
"1": {
|
"1": {
|
||||||
"version": "1.18.0"
|
"version": "1.19.0"
|
||||||
|
},
|
||||||
|
"1.19": {
|
||||||
|
"version": "1.19.0"
|
||||||
|
},
|
||||||
|
"1.19.0": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DD029A2506B538",
|
||||||
|
"checksum": "825287143f397774093539ca2458854ab3735c0e8a1aaf075c22edce7d261556"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DD029A168794A5",
|
||||||
|
"checksum": "80ad420c0a9a5d090f6ca0ddc9305a139d57ba6b6e8e7adf22c800389baf3ab6"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD029A718B5FF6",
|
||||||
|
"checksum": "3e488eea6d930f54a43b1b2c8c01226286c7c01b5ba7211d7beb9029918a616c"
|
||||||
|
},
|
||||||
|
"aarch64_linux_gnu": {
|
||||||
|
"etag": "0x8DD029A11BFB41C",
|
||||||
|
"checksum": "7f9c0522e1acf869e0558e085c43f2cea3e30e4f7a4b7bc3d5540cbdee7b4273"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"1.18": {
|
"1.18": {
|
||||||
"version": "1.18.0"
|
"version": "1.18.0"
|
||||||
|
|||||||
56
manifests/release-plz.json
generated
56
manifests/release-plz.json
generated
@@ -22,10 +22,62 @@
|
|||||||
},
|
},
|
||||||
"license_markdown": "[MIT](https://github.com/MarcoIeni/release-plz/blob/main/LICENSE-MIT) OR [Apache-2.0](https://github.com/MarcoIeni/release-plz/blob/main/LICENSE-APACHE)",
|
"license_markdown": "[MIT](https://github.com/MarcoIeni/release-plz/blob/main/LICENSE-MIT) OR [Apache-2.0](https://github.com/MarcoIeni/release-plz/blob/main/LICENSE-APACHE)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "0.3.106"
|
"version": "0.3.108"
|
||||||
},
|
},
|
||||||
"0.3": {
|
"0.3": {
|
||||||
"version": "0.3.106"
|
"version": "0.3.108"
|
||||||
|
},
|
||||||
|
"0.3.108": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DD0428A19F2ED5",
|
||||||
|
"checksum": "568c73281721459c611d0e4393e4d297da91153e0ebd34826ba3a5db01dddcc5"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DD042A99EA50B1",
|
||||||
|
"checksum": "07cbbf539058e7f8fa3b8401346c7a5e3a0a2093683bbea13e06dcdcffb902e7"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD04298DF03ECE",
|
||||||
|
"checksum": "2b7a958cd7f4c43d04b7afd3bb407533ba0def292b5d81e99d7ecc53034f0f40"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"etag": "0x8DD0428AABEA526",
|
||||||
|
"checksum": "73e89d186c5d485cb5eb0b9579bf185b8f1f99562be4153dca64f767e9575f3d"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DD042A1409C977",
|
||||||
|
"checksum": "44d92647d7aeed0d24ed03d8193cb598378f7e8a77b4e760885232d4586613e7"
|
||||||
|
},
|
||||||
|
"aarch64_windows": {
|
||||||
|
"etag": "0x8DD0429A68C0ECC",
|
||||||
|
"checksum": "b403abfc0725994495a7689996f5f106d9c52407d7e2ab3fcd066f7dfb3c70c0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"0.3.107": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DCFFDABE39EB33",
|
||||||
|
"checksum": "c04c365fc7bbff63c5ad48afed7922b2c164643795b019caf294543135c72dc3"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DCFFDAF34A4A0C",
|
||||||
|
"checksum": "0dcfa8b2cc11c0bd5faee771940a24b2f828cde28571b64c579123a757db156e"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DCFFDB847E30C1",
|
||||||
|
"checksum": "6f5055da7e320ba0b4ca086dc34187c98e4c2c6b05e3ca308a06fbdb631810b3"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"etag": "0x8DCFFDAC2A19EB3",
|
||||||
|
"checksum": "44551202b60551ed1363abcb285676fc03864bc47a71a5fdfbc48a093aee5976"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DCFFDB34F4FABE",
|
||||||
|
"checksum": "1bfa1d07c8b2a1a744b03f0adc367e6b34066604aa0c10f51fd00afd4cdfb3dc"
|
||||||
|
},
|
||||||
|
"aarch64_windows": {
|
||||||
|
"etag": "0x8DCFFDBACB83D67",
|
||||||
|
"checksum": "484767e3677e0b6c1735b01fcdfd3834d549688b8f8930e0c0d6dee1e0dbb7d6"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"0.3.106": {
|
"0.3.106": {
|
||||||
"x86_64_linux_musl": {
|
"x86_64_linux_musl": {
|
||||||
|
|||||||
24
manifests/typos.json
generated
24
manifests/typos.json
generated
@@ -16,13 +16,31 @@
|
|||||||
},
|
},
|
||||||
"license_markdown": "[MIT](https://github.com/crate-ci/typos/blob/master/LICENSE-MIT) OR [Apache-2.0](https://github.com/crate-ci/typos/blob/master/LICENSE-APACHE)",
|
"license_markdown": "[MIT](https://github.com/crate-ci/typos/blob/master/LICENSE-MIT) OR [Apache-2.0](https://github.com/crate-ci/typos/blob/master/LICENSE-APACHE)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "1.27.2"
|
"version": "1.27.3"
|
||||||
},
|
},
|
||||||
"1": {
|
"1": {
|
||||||
"version": "1.27.2"
|
"version": "1.27.3"
|
||||||
},
|
},
|
||||||
"1.27": {
|
"1.27": {
|
||||||
"version": "1.27.2"
|
"version": "1.27.3"
|
||||||
|
},
|
||||||
|
"1.27.3": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DD000722C414AA",
|
||||||
|
"checksum": "d1020ef4c89a7e9d4f70292b4cf88e4c28de44c9da881cfb6e3aec153a61cced"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DD0007309510F6",
|
||||||
|
"checksum": "3afdf4a7101e7b074a364d6eeb4d4ec2f9ec567002f540d774e1cfe12849a8b5"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD00075F9477C4",
|
||||||
|
"checksum": "b9b1f42a748c8cbab07d9ca9346f50ec507d2efeb97245af921edd642709b274"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DD0006FC7BC3B8",
|
||||||
|
"checksum": "ced08f770df26787c351363aad59d5fd6027b7a45335c2fddfcf82615d88e607"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"1.27.2": {
|
"1.27.2": {
|
||||||
"x86_64_linux_musl": {
|
"x86_64_linux_musl": {
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"repository": "https://github.com/orium/cargo-rdme",
|
"repository": "https://github.com/orium/cargo-rdme",
|
||||||
"tag_prefix": "v",
|
"tag_prefix": "v",
|
||||||
"rust_crate": "${package}",
|
"rust_crate": "${package}",
|
||||||
"broken": ["1.4.3", "1.4.4", "1.4.5", "1.4.6"],
|
"broken": ["1.4.3", "1.4.4", "1.4.5", "1.4.6", "1.4.7"],
|
||||||
"platform": {
|
"platform": {
|
||||||
"x86_64_linux_musl": {
|
"x86_64_linux_musl": {
|
||||||
"asset_name": "${package}_v${version}_${rust_target}.tar.bz2"
|
"asset_name": "${package}_v${version}_${rust_target}.tar.bz2"
|
||||||
|
|||||||
Reference in New Issue
Block a user