mirror of
https://github.com/taiki-e/install-action.git
synced 2026-04-30 19:00:25 +00:00
Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6a805195a6 | ||
|
|
d584a598e6 | ||
|
|
9d183da1f4 | ||
|
|
44516826f1 | ||
|
|
2a4a8c0b46 | ||
|
|
baf36038f2 | ||
|
|
05813aebbf | ||
|
|
e489a929a4 | ||
|
|
0b065cc737 |
23
CHANGELOG.md
23
CHANGELOG.md
@@ -10,13 +10,29 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [2.14.3] - 2023-08-09
|
||||
|
||||
- Update `protoc@latest` to 3.24.0.
|
||||
|
||||
- Update `parse-changelog@latest` to 0.6.2.
|
||||
|
||||
## [2.14.2] - 2023-08-06
|
||||
|
||||
- Update `cargo-llvm-cov@latest` to 0.5.25.
|
||||
|
||||
- Update `cargo-hack@latest` to 0.5.29.
|
||||
|
||||
## [2.14.1] - 2023-08-06
|
||||
|
||||
- Update `mdbook@latest` to 0.4.34.
|
||||
|
||||
## [2.14.0] - 2023-08-05
|
||||
|
||||
- Use `cargo-binstall` to install `nextest`. ([#183](https://github.com/taiki-e/install-action/pull/183))
|
||||
|
||||
This is a change made in response to the request from the nextest maintainer, which potentially increases the installation time of nextest and the possibility of network errors during installation.
|
||||
|
||||
If you encounter network errors, you should usually be able to work around them by setting `GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}` environment variables.
|
||||
If you encounter network errors, you should usually be able to work around them by setting `GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}` environment variable.
|
||||
|
||||
## [2.13.6] - 2023-08-04
|
||||
|
||||
@@ -1039,7 +1055,10 @@ Note: This release is considered a breaking change because installing on version
|
||||
|
||||
Initial release
|
||||
|
||||
[Unreleased]: https://github.com/taiki-e/install-action/compare/v2.14.0...HEAD
|
||||
[Unreleased]: https://github.com/taiki-e/install-action/compare/v2.14.3...HEAD
|
||||
[2.14.3]: https://github.com/taiki-e/install-action/compare/v2.14.2...v2.14.3
|
||||
[2.14.2]: https://github.com/taiki-e/install-action/compare/v2.14.1...v2.14.2
|
||||
[2.14.1]: https://github.com/taiki-e/install-action/compare/v2.14.0...v2.14.1
|
||||
[2.14.0]: https://github.com/taiki-e/install-action/compare/v2.13.6...v2.14.0
|
||||
[2.13.6]: https://github.com/taiki-e/install-action/compare/v2.13.5...v2.13.6
|
||||
[2.13.5]: https://github.com/taiki-e/install-action/compare/v2.13.4...v2.13.5
|
||||
|
||||
30
manifests/cargo-hack.json
generated
30
manifests/cargo-hack.json
generated
@@ -2,10 +2,36 @@
|
||||
"rust_crate": "cargo-hack",
|
||||
"template": null,
|
||||
"latest": {
|
||||
"version": "0.5.28"
|
||||
"version": "0.5.29"
|
||||
},
|
||||
"0.5": {
|
||||
"version": "0.5.28"
|
||||
"version": "0.5.29"
|
||||
},
|
||||
"0.5.29": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.5.29/cargo-hack-x86_64-unknown-linux-musl.tar.gz",
|
||||
"checksum": "97be81fba9a94970d9984ea6a02028d9c6a83d53071456aa7c7cf35b9a150405"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.5.29/cargo-hack-x86_64-apple-darwin.tar.gz",
|
||||
"checksum": "1388d51e994673f30380f709f3a8bacbc7f2981c3b294f34945b9612977ae6dd"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.5.29/cargo-hack-x86_64-pc-windows-msvc.zip",
|
||||
"checksum": "e6bcc2ea5c5802e53773fb5f64b0d3e43784779ec61d7c2cbefb1a760fb04241"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.5.29/cargo-hack-aarch64-unknown-linux-musl.tar.gz",
|
||||
"checksum": "e8729bd85be2c4efc3c72c8a7c995758f4b531334144cb7376557d44492c102e"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.5.29/cargo-hack-aarch64-apple-darwin.tar.gz",
|
||||
"checksum": "3a024f71643a0cb137b28c7da9530c417f2c64dfa5f78d5e615b7f7376b43558"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.5.29/cargo-hack-aarch64-pc-windows-msvc.tar.gz",
|
||||
"checksum": "79261291cadb00feb75f70d50ba33ff8fb6c68d7ab9c66614423610dd840d23f"
|
||||
}
|
||||
},
|
||||
"0.5.28": {
|
||||
"x86_64_linux_musl": {
|
||||
|
||||
21
manifests/cargo-llvm-cov.json
generated
21
manifests/cargo-llvm-cov.json
generated
@@ -18,10 +18,27 @@
|
||||
}
|
||||
},
|
||||
"latest": {
|
||||
"version": "0.5.24"
|
||||
"version": "0.5.25"
|
||||
},
|
||||
"0.5": {
|
||||
"version": "0.5.24"
|
||||
"version": "0.5.25"
|
||||
},
|
||||
"0.5.25": {
|
||||
"x86_64_linux_musl": {
|
||||
"checksum": "0567e6b651bcb819afcc2cc8f49f18a74c57ffba0aa9a2640b313c5f2568ea1c"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "7af62464a39cc9732567ba2b3213c19afe85b20f0ffd7e70ba56cd7bcc78e661"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "2b91db2b1b329f700337d5ec2323e969527644f3761cc1ae7a4a94a9faff2d0d"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"checksum": "a16b7950746dd8d764479289ac48cb06ebc156e2a750c595b95589a68342bccb"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"checksum": "db6d159acf27ca7d6f148fc5604dd9f2ff39da163f94d9a1c37c3f063dd664fb"
|
||||
}
|
||||
},
|
||||
"0.5.24": {
|
||||
"x86_64_linux_musl": {
|
||||
|
||||
18
manifests/mdbook.json
generated
18
manifests/mdbook.json
generated
@@ -18,10 +18,24 @@
|
||||
}
|
||||
},
|
||||
"latest": {
|
||||
"version": "0.4.33"
|
||||
"version": "0.4.34"
|
||||
},
|
||||
"0.4": {
|
||||
"version": "0.4.33"
|
||||
"version": "0.4.34"
|
||||
},
|
||||
"0.4.34": {
|
||||
"x86_64_linux_musl": {
|
||||
"checksum": "dde955d5b3df83ebaed716cf18d53b05678a4b78500cfa33aedd138bd55a1152"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "738f423f1857c58a6175cf35254de4e616ca61db93803766eca5773ca6dbf516"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "3679b9be098c410423797f14bae01523a2074ad0ffe8668980df074d1d4e5198"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"checksum": "b7188119e088dc87a1db13963f78eaffb4a3959109936e26ee4afea74de0df5c"
|
||||
}
|
||||
},
|
||||
"0.4.33": {
|
||||
"x86_64_linux_musl": {
|
||||
|
||||
24
manifests/parse-changelog.json
generated
24
manifests/parse-changelog.json
generated
@@ -24,10 +24,30 @@
|
||||
}
|
||||
},
|
||||
"latest": {
|
||||
"version": "0.6.1"
|
||||
"version": "0.6.2"
|
||||
},
|
||||
"0.6": {
|
||||
"version": "0.6.1"
|
||||
"version": "0.6.2"
|
||||
},
|
||||
"0.6.2": {
|
||||
"x86_64_linux_musl": {
|
||||
"checksum": "e64e446ba613599ca51583fc94fd1062bd79550e5e75bab9ef3047d021b6bb3a"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "11898a671fa48b328fc80d3287b9b9e36c1d97e22031c3bdd2c24fc1b9209ef9"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "e0a701a6bbd1e01dfa9827f7f6000ed4d7d1783fb17836cafacbfb346e23c19f"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"checksum": "1bcee8f53807c5a571460db33fcd12d00b22220a5e5a1ab6c536c904ef47c604"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"checksum": "76f77e36fec9c4b57190aabdd36fb140121088d3bfa1b2672be2999b71eb6a48"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"checksum": "c9315d7352538cbe67dc9547ee8fbd6bf196fb0ae6317b903dbb6bc57b0420ff"
|
||||
}
|
||||
},
|
||||
"0.6.1": {
|
||||
"x86_64_linux_musl": {
|
||||
|
||||
29
manifests/protoc.json
generated
29
manifests/protoc.json
generated
@@ -2,10 +2,35 @@
|
||||
"rust_crate": null,
|
||||
"template": null,
|
||||
"latest": {
|
||||
"version": "3.23.4"
|
||||
"version": "3.24.0"
|
||||
},
|
||||
"3": {
|
||||
"version": "3.23.4"
|
||||
"version": "3.24.0"
|
||||
},
|
||||
"3.24": {
|
||||
"version": "3.24.0"
|
||||
},
|
||||
"3.24.0": {
|
||||
"x86_64_linux_gnu": {
|
||||
"url": "https://github.com/protocolbuffers/protobuf/releases/download/v24.0/protoc-24.0-linux-x86_64.zip",
|
||||
"checksum": "4feef12d91c4e452eac8c45bd11f43d51541db7fc6c18b4ca7bdd38af52c9d15"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/protocolbuffers/protobuf/releases/download/v24.0/protoc-24.0-osx-x86_64.zip",
|
||||
"checksum": "c438ae68427aa848f4e2dbf7d6cbd4e6a13e30a6bcc61007fd95cfc90451264a"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/protocolbuffers/protobuf/releases/download/v24.0/protoc-24.0-win64.zip",
|
||||
"checksum": "8c84d3d36936424a99934a9e5034f8a573615bf7f1b4246d536f33c120af60cd"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"url": "https://github.com/protocolbuffers/protobuf/releases/download/v24.0/protoc-24.0-linux-aarch_64.zip",
|
||||
"checksum": "d27f1479fc4707f275eaa952cef548f9fa0c8ef2d8cb5977f337d2ce61430682"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/protocolbuffers/protobuf/releases/download/v24.0/protoc-24.0-osx-aarch_64.zip",
|
||||
"checksum": "e4cc0739f0f8ae31633fb11335f11e6fbe067ecda8fd1b4716e80cfe3661ee1d"
|
||||
}
|
||||
},
|
||||
"3.23": {
|
||||
"version": "3.23.4"
|
||||
|
||||
Reference in New Issue
Block a user