mirror of
https://github.com/taiki-e/install-action.git
synced 2026-05-18 09:50:22 +00:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
87990c8245 | ||
|
|
d8f82abc6e | ||
|
|
3a10567018 |
@@ -10,6 +10,10 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [2.20.9] - 2023-10-18
|
||||||
|
|
||||||
|
- Update `cargo-hack@latest` to 0.6.12.
|
||||||
|
|
||||||
## [2.20.8] - 2023-10-18
|
## [2.20.8] - 2023-10-18
|
||||||
|
|
||||||
- Update `parse-changelog@latest` to 0.6.4.
|
- Update `parse-changelog@latest` to 0.6.4.
|
||||||
@@ -1325,7 +1329,8 @@ 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.20.8...HEAD
|
[Unreleased]: https://github.com/taiki-e/install-action/compare/v2.20.9...HEAD
|
||||||
|
[2.20.9]: https://github.com/taiki-e/install-action/compare/v2.20.8...v2.20.9
|
||||||
[2.20.8]: https://github.com/taiki-e/install-action/compare/v2.20.7...v2.20.8
|
[2.20.8]: https://github.com/taiki-e/install-action/compare/v2.20.7...v2.20.8
|
||||||
[2.20.7]: https://github.com/taiki-e/install-action/compare/v2.20.6...v2.20.7
|
[2.20.7]: https://github.com/taiki-e/install-action/compare/v2.20.6...v2.20.7
|
||||||
[2.20.6]: https://github.com/taiki-e/install-action/compare/v2.20.5...v2.20.6
|
[2.20.6]: https://github.com/taiki-e/install-action/compare/v2.20.5...v2.20.6
|
||||||
|
|||||||
30
manifests/cargo-hack.json
generated
30
manifests/cargo-hack.json
generated
@@ -2,10 +2,36 @@
|
|||||||
"rust_crate": "cargo-hack",
|
"rust_crate": "cargo-hack",
|
||||||
"template": null,
|
"template": null,
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "0.6.11"
|
"version": "0.6.12"
|
||||||
},
|
},
|
||||||
"0.6": {
|
"0.6": {
|
||||||
"version": "0.6.11"
|
"version": "0.6.12"
|
||||||
|
},
|
||||||
|
"0.6.12": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.12/cargo-hack-x86_64-unknown-linux-musl.tar.gz",
|
||||||
|
"checksum": "e5eacdd5e420ec79c9490c8e4b8868ff84c3818cd9f7c93795dae8ac88fa60ba"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.12/cargo-hack-x86_64-apple-darwin.tar.gz",
|
||||||
|
"checksum": "9558afab9b0c311635e27acc86e21e791ee5cedb44292ce5a7261082aef1d1d2"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.12/cargo-hack-x86_64-pc-windows-msvc.tar.gz",
|
||||||
|
"checksum": "8817a2fcb5442d84001a18c615c37162d89b539005ebc1497df263c39a450592"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.12/cargo-hack-aarch64-unknown-linux-musl.tar.gz",
|
||||||
|
"checksum": "466382fabb571dd71d4229eee35e4da2ecb3b3a3c2e28a05972f27129a472bab"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.12/cargo-hack-aarch64-apple-darwin.tar.gz",
|
||||||
|
"checksum": "2c03d4418382599670772df4b8063ce9d0882c7fbf03a9d7eff68cc172b1b88a"
|
||||||
|
},
|
||||||
|
"aarch64_windows": {
|
||||||
|
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.12/cargo-hack-aarch64-pc-windows-msvc.tar.gz",
|
||||||
|
"checksum": "9e15a18977c5f71a8162282f1b5dd9a7ae4c9ba8222640a567ef757bb8e317e8"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"0.6.11": {
|
"0.6.11": {
|
||||||
"x86_64_linux_musl": {
|
"x86_64_linux_musl": {
|
||||||
|
|||||||
@@ -114,7 +114,7 @@ if [[ -n "$(git ls-files '*.rs')" ]]; then
|
|||||||
done
|
done
|
||||||
# Make sure that public Rust crates don't contain executables.
|
# Make sure that public Rust crates don't contain executables.
|
||||||
failed_files=''
|
failed_files=''
|
||||||
metadata=$(cargo metadata --format-version=1 --all-features --no-deps)
|
metadata=$(cargo metadata --format-version=1 --no-deps)
|
||||||
has_public_crate=''
|
has_public_crate=''
|
||||||
for id in $(jq <<<"${metadata}" '.workspace_members[]'); do
|
for id in $(jq <<<"${metadata}" '.workspace_members[]'); do
|
||||||
pkg=$(jq <<<"${metadata}" ".packages[] | select(.id == ${id})")
|
pkg=$(jq <<<"${metadata}" ".packages[] | select(.id == ${id})")
|
||||||
@@ -314,7 +314,7 @@ if [[ -f .cspell.json ]]; then
|
|||||||
if [[ "${manifest_path}" != "Cargo.toml" ]] && ! grep -Eq '\[workspace\]' "${manifest_path}"; then
|
if [[ "${manifest_path}" != "Cargo.toml" ]] && ! grep -Eq '\[workspace\]' "${manifest_path}"; then
|
||||||
continue
|
continue
|
||||||
fi
|
fi
|
||||||
metadata=$(cargo metadata --format-version=1 --all-features --no-deps --manifest-path "${manifest_path}")
|
metadata=$(cargo metadata --format-version=1 --no-deps --manifest-path "${manifest_path}")
|
||||||
for id in $(jq <<<"${metadata}" '.workspace_members[]'); do
|
for id in $(jq <<<"${metadata}" '.workspace_members[]'); do
|
||||||
dependencies+="$(jq <<<"${metadata}" ".packages[] | select(.id == ${id})" | jq -r '.dependencies[].name')"$'\n'
|
dependencies+="$(jq <<<"${metadata}" ".packages[] | select(.id == ${id})" | jq -r '.dependencies[].name')"$'\n'
|
||||||
done
|
done
|
||||||
|
|||||||
Reference in New Issue
Block a user