Compare commits

...

17 Commits

Author SHA1 Message Date
Taiki Endo
cd39cb0572 Release 2.62.2 2025-09-23 02:38:30 +09:00
Taiki Endo
bfb416bb57 Update vacuum@latest to 0.18.5 2025-09-23 00:17:59 +09:00
Taiki Endo
df23533d99 Update cargo-shear@latest to 1.5.2 2025-09-23 00:17:59 +09:00
Taiki Endo
029e015cbe Update cargo-deny@latest to 0.18.5 2025-09-23 00:17:59 +09:00
Taiki Endo
d6912b4777 Release 2.62.1 2025-09-22 09:45:42 +09:00
Taiki Endo
ac4d226188 Update mise@latest to 2025.9.15 2025-09-22 09:41:53 +09:00
Taiki Endo
a878b7011d Update cargo-udeps@latest to 0.1.59 2025-09-22 09:41:53 +09:00
Taiki Endo
16ab0e7b53 Update git-cliff@latest to 2.10.1 2025-09-22 03:17:49 +09:00
Taiki Endo
0e09747a63 Release 2.62.0 2025-09-21 14:45:25 +09:00
Taiki Endo
1856fd6ff0 Update changelog 2025-09-21 14:45:02 +09:00
Benjamin Brienen
ed4255be07 Support cargo-deadlinks (#1161) 2025-09-21 14:41:43 +09:00
Taiki Endo
3c3a266059 Release 2.61.13 2025-09-21 14:14:31 +09:00
Taiki Endo
e814402cd9 Update cargo-semver-checks@latest to 0.44.0 2025-09-21 13:48:01 +09:00
Taiki Endo
e34e0638e2 Update mise@latest to 2025.9.14 2025-09-21 06:17:38 +09:00
Taiki Endo
bc308e7d8f Update wasmtime@latest to 37.0.0 2025-09-21 03:17:31 +09:00
Taiki Endo
26176d8d69 ci: Setup release workflow for install-action-manifest-schema 2025-09-20 13:02:47 +09:00
Taiki Endo
ec01b5f325 manifest-schema: Release 0.1.1 2025-09-20 10:55:18 +09:00
16 changed files with 505 additions and 24 deletions

View File

@@ -5,6 +5,7 @@ callgrind
coreutils
cyclonedx
cygdrive
deadlinks
deepsource
distro
doas

View File

@@ -7,6 +7,7 @@ on:
push:
tags:
- v[0-9]+.[0-9]+.*
- install-action-manifest-schema-[0-9]+.[0-9]+.*
defaults:
run:
@@ -14,11 +15,12 @@ defaults:
jobs:
create-release:
if: github.repository_owner == 'taiki-e'
if: github.repository_owner == 'taiki-e' && !startsWith(github.ref_name, 'install-action-manifest-schema-')
runs-on: ubuntu-latest
timeout-minutes: 60
environment: release
permissions:
contents: write
contents: write # for taiki-e/create-gh-release-action
steps:
- uses: taiki-e/checkout-action@v1
- uses: taiki-e/create-gh-release-action@v1
@@ -27,3 +29,16 @@ jobs:
title: $version
branch: 'main|v[0-9]+'
token: ${{ secrets.GITHUB_TOKEN }}
create-release-manifest-schema:
if: github.repository_owner == 'taiki-e' && startsWith(github.ref_name, 'install-action-manifest-schema-')
uses: taiki-e/github-actions/.github/workflows/create-release.yml@main
with:
crates: tools/manifest-schema
changelog: tools/manifest-schema/CHANGELOG.md
title: $prefix $version
prefix: install-action-manifest-schema
permissions:
contents: write # for taiki-e/create-gh-release-action
id-token: write # for rust-lang/crates-io-auth-action
secrets: inherit

View File

@@ -10,6 +10,34 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com
## [Unreleased]
## [2.62.2] - 2025-09-22
- Update `vacuum@latest` to 0.18.5.
- Update `cargo-shear@latest` to 1.5.2.
- Update `cargo-deny@latest` to 0.18.5.
## [2.62.1] - 2025-09-22
- Update `mise@latest` to 2025.9.15.
- Update `cargo-udeps@latest` to 0.1.59.
- Update `git-cliff@latest` to 2.10.1.
## [2.62.0] - 2025-09-21
- Support `cargo-deadlinks` ([#1161](https://github.com/taiki-e/install-action/pull/1161), thanks @BenjaminBrienen)
## [2.61.13] - 2025-09-21
- Update `cargo-semver-checks@latest` to 0.44.0.
- Update `mise@latest` to 2025.9.14.
- Update `wasmtime@latest` to 37.0.0.
## [2.61.12] - 2025-09-20
- Update `parse-changelog@latest` to 0.6.14.
@@ -92,11 +120,11 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com
## [2.61.0] - 2025-09-10
- Add `uv`. ([#1138](https://github.com/taiki-e/install-action/pull/1138), thanks @jayvdb)
- Support `uv`. ([#1138](https://github.com/taiki-e/install-action/pull/1138), thanks @jayvdb)
- Add `mise` ([#1137](https://github.com/taiki-e/install-action/pull/1137), thanks @jayvdb)
- Support `mise` ([#1137](https://github.com/taiki-e/install-action/pull/1137), thanks @jayvdb)
- Add `ubi` ([#1135](https://github.com/taiki-e/install-action/pull/1135), thanks @jayvdb)
- Support `ubi` ([#1135](https://github.com/taiki-e/install-action/pull/1135), thanks @jayvdb)
- Update `coreutils@latest` to 0.2.2.
@@ -4533,7 +4561,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.61.12...HEAD
[Unreleased]: https://github.com/taiki-e/install-action/compare/v2.62.2...HEAD
[2.62.2]: https://github.com/taiki-e/install-action/compare/v2.62.1...v2.62.2
[2.62.1]: https://github.com/taiki-e/install-action/compare/v2.62.0...v2.62.1
[2.62.0]: https://github.com/taiki-e/install-action/compare/v2.61.13...v2.62.0
[2.61.13]: https://github.com/taiki-e/install-action/compare/v2.61.12...v2.61.13
[2.61.12]: https://github.com/taiki-e/install-action/compare/v2.61.11...v2.61.12
[2.61.11]: https://github.com/taiki-e/install-action/compare/v2.61.10...v2.61.11
[2.61.10]: https://github.com/taiki-e/install-action/compare/v2.61.9...v2.61.10

View File

@@ -17,6 +17,7 @@ See the [Supported tools section in README.md](README.md#supported-tools) for ho
| [**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) |
| [**cargo-deadlinks**](https://github.com/deadlinks/cargo-deadlinks) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/deadlinks/cargo-deadlinks/releases) | Linux, macOS, Windows | [MIT](https://github.com/deadlinks/cargo-deadlinks/blob/master/LICENSE-MIT) OR [Apache-2.0](https://github.com/deadlinks/cargo-deadlinks/blob/master/LICENSE-APACHE) |
| [**cargo-deny**](https://github.com/EmbarkStudios/cargo-deny) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/EmbarkStudios/cargo-deny/releases) | Linux, macOS, Windows | [MIT](https://github.com/EmbarkStudios/cargo-deny/blob/main/LICENSE-MIT) OR [Apache-2.0](https://github.com/EmbarkStudios/cargo-deny/blob/main/LICENSE-APACHE) |
| [**cargo-dinghy**](https://github.com/sonos/dinghy) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/sonos/dinghy/releases) | Linux, macOS | [MIT](https://github.com/sonos/dinghy/blob/main/LICENSE-MIT) OR [Apache-2.0](https://github.com/sonos/dinghy/blob/main/LICENSE-APACHE) |
| [**cargo-export**](https://github.com/bazhenov/cargo-export) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/bazhenov/cargo-export/releases) | Linux, macOS, Windows | [MIT](https://github.com/bazhenov/cargo-export/blob/master/LICENSE) |

142
manifests/cargo-deadlinks.json generated Normal file
View File

@@ -0,0 +1,142 @@
{
"rust_crate": "cargo-deadlinks",
"template": {
"x86_64_linux_musl": {
"url": "https://github.com/deadlinks/cargo-deadlinks/releases/download/${version}/cargo-deadlinks-linux",
"bin": "cargo-deadlinks"
},
"x86_64_macos": {
"url": "https://github.com/deadlinks/cargo-deadlinks/releases/download/${version}/cargo-deadlinks-macos",
"bin": "cargo-deadlinks"
},
"x86_64_windows": {
"url": "https://github.com/deadlinks/cargo-deadlinks/releases/download/${version}/cargo-deadlinks-windows",
"bin": "cargo-deadlinks"
}
},
"license_markdown": "[MIT](https://github.com/deadlinks/cargo-deadlinks/blob/master/LICENSE-MIT) OR [Apache-2.0](https://github.com/deadlinks/cargo-deadlinks/blob/master/LICENSE-APACHE)",
"latest": {
"version": "0.8.1"
},
"0.8": {
"version": "0.8.1"
},
"0.8.1": {
"x86_64_linux_musl": {
"etag": "0x8D9BA04AE1969C6",
"checksum": "e7a91627a0c7ca6dc13acacdf919d42c5e8f8b83335e1cef40099033418e5775"
},
"x86_64_macos": {
"etag": "0x8D9BA04ADFB85E6",
"checksum": "59b62815867394d063a6fc9b790a51341cf55d0ecc0cb67c771a09f1b6d86783"
},
"x86_64_windows": {
"etag": "0x8D9BA04B39B217B",
"checksum": "e739cad916e877f4c93c43e163a09c35b5d3af63dede917b5630226049b1f4f3"
}
},
"0.8.0": {
"x86_64_linux_musl": {
"etag": "0x8D9BA04B6EDEED6",
"checksum": "2f5d8afb113bab4057f2a19a672ee64675b0c3bce7157f6a7a371662fa20c3e9"
},
"x86_64_macos": {
"etag": "0x8D9BA04A4014970",
"checksum": "ed1c6f3f2bca18d62d0df547ce512819e85492a132a88f4617c060b66fca9ed0"
},
"x86_64_windows": {
"etag": "0x8D9BA04A7B8BD4D",
"checksum": "9595d878b7c6e8e432dbe879abc22a3b7c5c669660e57fd69c808864cbece832"
}
},
"0.7": {
"version": "0.7.2"
},
"0.7.2": {
"x86_64_linux_musl": {
"etag": "0x8D9BA04A4EAC3FF",
"checksum": "775678a8958978792d86ca5ea84eed067287e0b542689d0e225b2f04068cc4e7"
},
"x86_64_macos": {
"etag": "0x8D9BA04A77AABED",
"checksum": "fb3a71111e08ce485cca45ab383f4314d73ee300fc7c51f31ac706f1be5c04b8"
},
"x86_64_windows": {
"etag": "0x8D9BA04B256C2F5",
"checksum": "4e51c0ca562c37297e1a61ab596ae36d2ecdbc4a2e35df054f4f76b45d31ea1f"
}
},
"0.7.1": {
"x86_64_linux_musl": {
"etag": "0x8D9BA04B278EBFD",
"checksum": "23eb7c8f172e8208243d44e53c347ba7ffdc5316caf530454ae5458176b6c0c5"
},
"x86_64_macos": {
"etag": "0x8D9BA04AC1EA728",
"checksum": "4e26562febe0668379030d74a6d1ae70284b4895fc7fe2e341e9e8d600c0cb4c"
},
"x86_64_windows": {
"etag": "0x8D9BA04A81D15BE",
"checksum": "18b99c056a1f531df4ad68ba8f5a312f2514ce4bdf9abfa5f4d0267ffa3e62f8"
}
},
"0.7.0": {
"x86_64_linux_musl": {
"etag": "0x8D9BA04AFCCA699",
"checksum": "68e78a562d7a97422d24494d7d0befd2ba57cee7acdba6817fe759b9b57351ea"
},
"x86_64_macos": {
"etag": "0x8D9BA04AA722042",
"checksum": "4aeb830af22fe5ca9d71f36b374d03a5f407881ca1b323afc96fdeba562da3b7"
},
"x86_64_windows": {
"etag": "0x8D9BA04A299B0A2",
"checksum": "baf9d4643ee52690cebb2021a7078828769b03fcc302ddff2eacf39b16245491"
}
},
"0.6": {
"version": "0.6.2"
},
"0.6.2": {
"x86_64_linux_musl": {
"etag": "0x8D9BA04B58914BD",
"checksum": "6ae09c739f3cde7218964d1350546aa09583e70c14c3d9cf3f3429d6dc79605e"
},
"x86_64_macos": {
"etag": "0x8D9BA04A2D79AF1",
"checksum": "49412e21e1d9da1f48dd013c3f65aaeb7afce2d72a28b1b66d9a4ac880cdd237"
},
"x86_64_windows": {
"etag": "0x8D9BA04A3B382F2",
"checksum": "95c8905e32ce32821f38c161587cedc32d445afae92f325abf6dd874ad06f781"
}
},
"0.6.1": {
"x86_64_linux_musl": {
"etag": "0x8D9BA04A3BCA955",
"checksum": "3f91dfa4f7bd3ec7402312490729b78db090c4eb8f300f1dc02f09ce454ff04a"
},
"x86_64_macos": {
"etag": "0x8D9BA04B1BD5882",
"checksum": "c6bbdf55f70bc3b3de6c0e14661b53a3aa89caca888c8417ccc9fa29f2e76ff7"
},
"x86_64_windows": {
"etag": "0x8D9BA04B1DF5A80",
"checksum": "281b798882ba7ba5beddca349ee832a73b87054ec1dfc526745db8915f51d4d7"
}
},
"0.6.0": {
"x86_64_linux_musl": {
"etag": "0x8D9BA04AF5D532D",
"checksum": "35504018d645314c8a5e6099d8ae788dcf2bfebdb6876a3349ded95d3656bfc0"
},
"x86_64_macos": {
"etag": "0x8D9BA04A51CC930",
"checksum": "9e5b558709379032bd5ab434630a1eb1a358c39c6027d5ae1738fa99fc1e814a"
},
"x86_64_windows": {
"etag": "0x8D9BA04AC976F00",
"checksum": "91908baf3650b41f2b8f1a3f9a506cd79fb4cb316a2349df97f2b7ec74e6f639"
}
}
}

View File

@@ -24,10 +24,32 @@
},
"license_markdown": "[MIT](https://github.com/EmbarkStudios/cargo-deny/blob/main/LICENSE-MIT) OR [Apache-2.0](https://github.com/EmbarkStudios/cargo-deny/blob/main/LICENSE-APACHE)",
"latest": {
"version": "0.18.4"
"version": "0.18.5"
},
"0.18": {
"version": "0.18.4"
"version": "0.18.5"
},
"0.18.5": {
"x86_64_linux_musl": {
"etag": "0x8DDF9E114099F18",
"checksum": "3e139780452310f922239f683b5c14f7d8f6f9b97fcc08d30696e1b90158527c"
},
"x86_64_macos": {
"etag": "0x8DDF9E0F2C7DDAF",
"checksum": "c83dcab58da77aeef639d324a0718b0d2a325821fcf89c78fc1abd7830229c89"
},
"x86_64_windows": {
"etag": "0x8DDF9E1534DAC67",
"checksum": "6fb561015a964443dd2f64229aae2dc263c42cbddeaffe36e1bbb5a5939986f3"
},
"aarch64_linux_musl": {
"etag": "0x8DDF9E0FF7DB0EB",
"checksum": "b31f5b9140a8a842228285186ac66b6b3c12e5a866060bce246554d9fc1ffabf"
},
"aarch64_macos": {
"etag": "0x8DDF9E0FDBBB427",
"checksum": "bf95a666c6f91dde978f4703621d3c877ee5f64aa28404cd837b70e9dfdc1f3a"
}
},
"0.18.4": {
"x86_64_linux_musl": {

View File

@@ -19,7 +19,32 @@
},
"license_markdown": "[Apache-2.0](https://github.com/obi1kenobi/cargo-semver-checks/blob/main/LICENSE-APACHE) OR [MIT](https://github.com/obi1kenobi/cargo-semver-checks/blob/main/LICENSE-MIT)",
"latest": {
"version": "0.43.0"
"version": "0.44.0"
},
"0.44": {
"version": "0.44.0"
},
"0.44.0": {
"x86_64_linux_musl": {
"etag": "0x8DDF8AF99E0D0D3",
"checksum": "7597bb67899fb18a110033df1c78f26e15fba0686f5863f08f13a664f353b4a0"
},
"x86_64_macos": {
"etag": "0x8DDF8AF7E5BB3FE",
"checksum": "ac01eefeec5354ab2a89d5121a97356ae969dc00a07cc907918f3531e8558799"
},
"x86_64_windows": {
"etag": "0x8DDF8B0367E3C88",
"checksum": "5898759eed36eeba42c47de25682f30fa747571167c2eb71a3054f67471d702d"
},
"aarch64_linux_musl": {
"etag": "0x8DDF8AF9BD58B51",
"checksum": "72cebda65824a2d79f16ec5406f85ad637514ece94a50db60589585aa4537753"
},
"aarch64_macos": {
"etag": "0x8DDF8B001DB484F",
"checksum": "b99b6e1e7047eae502396f7bdb7e4157bf03b02cb7b959e32801ed159bf86801"
}
},
"0.43": {
"version": "0.43.0"

View File

@@ -28,13 +28,39 @@
},
"license_markdown": "[MIT](https://github.com/Boshen/cargo-shear/blob/main/LICENSE)",
"latest": {
"version": "1.5.1"
"version": "1.5.2"
},
"1": {
"version": "1.5.1"
"version": "1.5.2"
},
"1.5": {
"version": "1.5.1"
"version": "1.5.2"
},
"1.5.2": {
"x86_64_linux_musl": {
"etag": "0x8DDF9E22998C4E7",
"checksum": "9016ad1bd01b0d3f7c1372fb998dc94be31385b0c7445fc3b0f76ae252d0caee"
},
"x86_64_macos": {
"etag": "0x8DDF9E23698E992",
"checksum": "3d5d034dc1503af0dd743e5bb776bdd225e3e744901f2b78b33f66605e57732a"
},
"x86_64_windows": {
"etag": "0x8DDF9E24FE88324",
"checksum": "9c67f2bae5c2253e23516bc0c6e7b5a73bcdbb5903192f465661e3ed7b531715"
},
"aarch64_linux_musl": {
"etag": "0x8DDF9E232855D2D",
"checksum": "535ebed51bcaf117dd55c68cf7ae62dbd06f621f8e0ed976b42ed120e18c1d6f"
},
"aarch64_macos": {
"etag": "0x8DDF9E22609D919",
"checksum": "624f2e35bf9f6377128a062c658e46083788eb661a8f48da2f9f4a71da0d5e48"
},
"aarch64_windows": {
"etag": "0x8DDF9E268BE6BC0",
"checksum": "dedfd17daf29cf44bf3bfc0b07e10cde237e96902d9494d3a8e230457a948c00"
}
},
"1.5.1": {
"x86_64_linux_musl": {

View File

@@ -3,10 +3,48 @@
"template": null,
"license_markdown": "[Apache-2.0 OR MIT](https://github.com/est31/cargo-udeps/blob/HEAD/LICENSE)",
"latest": {
"version": "0.1.57"
"version": "0.1.59"
},
"0.1": {
"version": "0.1.57"
"version": "0.1.59"
},
"0.1.59": {
"x86_64_linux_musl": {
"url": "https://github.com/est31/cargo-udeps/releases/download/v0.1.59/cargo-udeps-v0.1.59-x86_64-unknown-linux-musl.tar.gz",
"etag": "0x8DDF96C5387479A",
"checksum": "8da5675e785909b943e2d44859917e9b26e746d0674e6ab52a8155f7506a98c2",
"bin": "cargo-udeps-v0.1.59-x86_64-unknown-linux-musl/cargo-udeps"
},
"x86_64_macos": {
"url": "https://github.com/est31/cargo-udeps/releases/download/v0.1.59/cargo-udeps-v0.1.59-x86_64-apple-darwin.tar.gz",
"etag": "0x8DDF96C06582A6B",
"checksum": "d8ad79d4f534b3a80bb8ddea5c690c0cdd1861dd9d067771fd14dde61dd410a8",
"bin": "cargo-udeps-v0.1.59-x86_64-apple-darwin/cargo-udeps"
},
"x86_64_windows": {
"url": "https://github.com/est31/cargo-udeps/releases/download/v0.1.59/cargo-udeps-v0.1.59-x86_64-pc-windows-msvc.zip",
"etag": "0x8DDF96CCA9E93BB",
"checksum": "30b521e3d000f1cbf120f40ccf2197ed9147f877aa4f570b71ca1d8b742d6052",
"bin": "cargo-udeps-v0.1.59-x86_64-pc-windows-msvc/cargo-udeps.exe"
},
"aarch64_linux_musl": {
"url": "https://github.com/est31/cargo-udeps/releases/download/v0.1.59/cargo-udeps-v0.1.59-aarch64-unknown-linux-musl.tar.gz",
"etag": "0x8DDF96C4AAF0D9F",
"checksum": "0b0da6cd9dd39cf6670fd23f3e4e12ef76dab4ba5e5f614af05b1ddfe78e8425",
"bin": "cargo-udeps-v0.1.59-aarch64-unknown-linux-musl/cargo-udeps"
},
"aarch64_macos": {
"url": "https://github.com/est31/cargo-udeps/releases/download/v0.1.59/cargo-udeps-v0.1.59-aarch64-apple-darwin.tar.gz",
"etag": "0x8DDF96C8CDF87FE",
"checksum": "332db513cdf0af5363c70c701c67f8769f86e2ad8f80ba5e4a8dd765d8ffd2e3",
"bin": "cargo-udeps-v0.1.59-aarch64-apple-darwin/cargo-udeps"
},
"aarch64_windows": {
"url": "https://github.com/est31/cargo-udeps/releases/download/v0.1.59/cargo-udeps-v0.1.59-aarch64-pc-windows-msvc.zip",
"etag": "0x8DDF96CF2AC0279",
"checksum": "ad00b2bd71b7ab7044430683b7eb962c6f8f3a4f14cce53f5f0d539b21407507",
"bin": "cargo-udeps-v0.1.59-aarch64-pc-windows-msvc/cargo-udeps.exe"
}
},
"0.1.57": {
"x86_64_linux_musl": {

View File

@@ -28,13 +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.10.0"
"version": "2.10.1"
},
"2": {
"version": "2.10.0"
"version": "2.10.1"
},
"2.10": {
"version": "2.10.0"
"version": "2.10.1"
},
"2.10.1": {
"x86_64_linux_musl": {
"etag": "0x8DDF92C2D683721",
"checksum": "55ed8495e8c18e51e42182e17772013d6d2a7156a462d6b30f1adf17e54b465e"
},
"x86_64_macos": {
"etag": "0x8DDF92BF3460F4E",
"checksum": "c3111dddaf866a986085f22ff22fa3003645fc69a3b9302c4e1352c4676c398a"
},
"x86_64_windows": {
"etag": "0x8DDF92CAD420749",
"checksum": "073c8027da2e055ec83c3609c4195284bd10b2771fcbd806ff0f94e48c310c77"
},
"aarch64_linux_musl": {
"etag": "0x8DDF92C32FF251C",
"checksum": "218a25c728df98337541013218660eeb571a464daea7612b35bb4e97b22b97db"
},
"aarch64_macos": {
"etag": "0x8DDF92C13312F32",
"checksum": "98cf636ca6a66d84e0ba6202a990028ac45cf0dde331d18169397ae59cc6e41b"
},
"aarch64_windows": {
"etag": "0x8DDF92CB5CDAA6D",
"checksum": "b76e570c25dc73bf5d1b979f11a3f7f4b29c479e5199302b941d59285f20d1c5"
}
},
"2.10.0": {
"x86_64_linux_musl": {

58
manifests/mise.json generated
View File

@@ -28,13 +28,65 @@
},
"license_markdown": "[MIT](https://github.com/jdx/mise/blob/main/LICENSE)",
"latest": {
"version": "2025.9.13"
"version": "2025.9.15"
},
"2025": {
"version": "2025.9.13"
"version": "2025.9.15"
},
"2025.9": {
"version": "2025.9.13"
"version": "2025.9.15"
},
"2025.9.15": {
"x86_64_linux_musl": {
"etag": "0x8DDF966DE7507D8",
"checksum": "a32cb3b5f4ff37d727882bdac1f72b70c5bc84e2a6a6c77f318eda7e6884495c"
},
"x86_64_macos": {
"etag": "0x8DDF966E0DD383F",
"checksum": "56ce8203f89a15f670d27b005a9f8e4f133cbfbccba89a00b6169dbc6dbb27a0"
},
"x86_64_windows": {
"etag": "0x8DDF966E1692367",
"checksum": "71af1bd68b5a21fa8cedee99bb49a72c34706898f9654689ebb3dc24825655fc"
},
"aarch64_linux_musl": {
"etag": "0x8DDF966DB16BB02",
"checksum": "3743902f80af59342b90e4d218fd0e380f11e7414b4983ac193bc3c7fea57012"
},
"aarch64_macos": {
"etag": "0x8DDF966DFD8AD1E",
"checksum": "a5916b52f5289f9db841ebfd319de040d64d1552a5bfeeeebd9a210deadc81f0"
},
"aarch64_windows": {
"etag": "0x8DDF966E16CA1F1",
"checksum": "b40afb261cc3b47370efcaf908ef472f9e7d8d2e7edeb098b7d20fbb8444449b"
}
},
"2025.9.14": {
"x86_64_linux_musl": {
"etag": "0x8DDF87B0B23BD66",
"checksum": "aceb514d70bbef230850d718da4e3faba8d6277fa708bed12d2ec32791fc96dd"
},
"x86_64_macos": {
"etag": "0x8DDF87B0D7F2AC9",
"checksum": "3dfe6f4fa24fb19da294454bd350382b12eee4c2c781598677239ce642301969"
},
"x86_64_windows": {
"etag": "0x8DDF87B0E33583B",
"checksum": "1ef43467ae580635bd30412ab889b23c4caaf662bef5c8dabc3dfb025e53800b"
},
"aarch64_linux_musl": {
"etag": "0x8DDF87B07CF02E8",
"checksum": "5ccdd6a48391f8a2d0f82650f7a90d7ec05f4b1e844ba414b2d23e1c57e5c6d0"
},
"aarch64_macos": {
"etag": "0x8DDF87B0CA10F50",
"checksum": "4c20cb0c96e98c017b38acaa570a3ada69b75f8dbb377afa2530ad28dbb60b61"
},
"aarch64_windows": {
"etag": "0x8DDF87B0DA2DE5A",
"checksum": "6ce408cdd5b7a75aa8ab719735814cee770e9da1e1800766446651172f618f31"
}
},
"2025.9.13": {
"x86_64_linux_musl": {

30
manifests/vacuum.json generated
View File

@@ -22,10 +22,36 @@
},
"license_markdown": "[MIT](https://github.com/daveshanley/vacuum/blob/main/LICENSE)",
"latest": {
"version": "0.18.3"
"version": "0.18.5"
},
"0.18": {
"version": "0.18.3"
"version": "0.18.5"
},
"0.18.5": {
"x86_64_linux_musl": {
"etag": "0x8DDF9E9CF37EEAF",
"checksum": "7bd33eedc83216f2fcb04e7624887b4f6ade2e55f181e72100245f2d4beb6639"
},
"x86_64_macos": {
"etag": "0x8DDF9E9CE407479",
"checksum": "235285407460a9a095cbe6f28c687bd9effa89ad30e0fade339eeca01db12384"
},
"x86_64_windows": {
"etag": "0x8DDF9E9CEE0464A",
"checksum": "dae0e4aa2f988c1d5d5edcd2f39629db48ac5ea61f986c6b70a786085d5516f5"
},
"aarch64_linux_musl": {
"etag": "0x8DDF9E9CE18A6EB",
"checksum": "9f657fd1d8f0811e3851d12f48b8beee245e12407149f0d771133344480ead53"
},
"aarch64_macos": {
"etag": "0x8DDF9E9CDF67852",
"checksum": "d955347a0f63842be0c861c2e0700e03569dd27531af9effc301c5f4fbc38ebc"
},
"aarch64_windows": {
"etag": "0x8DDF9E9CEEC46B6",
"checksum": "87c7361b044ac10bb6046c61fe316e389dd1fa0c0cb3bc7fc9ee2e165985c2e7"
}
},
"0.18.3": {
"x86_64_linux_musl": {

View File

@@ -36,7 +36,47 @@
},
"license_markdown": "[Apache-2.0 WITH LLVM-exception](https://github.com/bytecodealliance/wasmtime/blob/main/LICENSE)",
"latest": {
"version": "36.0.2"
"version": "37.0.0"
},
"37": {
"version": "37.0.0"
},
"37.0": {
"version": "37.0.0"
},
"37.0.0": {
"x86_64_linux_gnu": {
"etag": "0x8DDF8683A867D38",
"checksum": "5d83e111f4de32d33c20a272628dd11a529bebeda4627eac51c2cae4ad69966e"
},
"x86_64_macos": {
"etag": "0x8DDF8683B9F8A9C",
"checksum": "5f14610b83bef0ee73134096b20fdc3f1f9c862f01caaf792699ee34ed5c5450"
},
"x86_64_windows": {
"etag": "0x8DDF868400CDD8E",
"checksum": "4c38b612f03717a4ab7dd822bf7d66ba3cae65e756d5d9d437744f1439fcbdbe"
},
"aarch64_linux_gnu": {
"etag": "0x8DDF8682D9A6DB4",
"checksum": "4e244fe4cfdedb1f8d9f9f3fbdeaad4fb7c34eb641777c387d3d251a92d70b2f"
},
"aarch64_macos": {
"etag": "0x8DDF8682E8DCE01",
"checksum": "9038bfa025589c7b0393e300bf3860bd80e797bb1df86514626fc08d71a20897"
},
"aarch64_windows": {
"etag": "0x8DDF86830A4695D",
"checksum": "0290e536d423a375059cda122313461b1c99157543e6ef80de062c5fe2f96f22"
},
"riscv64_linux_gnu": {
"etag": "0x8DDF86834D67CA0",
"checksum": "706a596e703e319a6dd6b95d9726f5d33db18e999d20ac927cd3ddf7b69f98bb"
},
"s390x_linux_gnu": {
"etag": "0x8DDF86835F1D158",
"checksum": "f87a6740b8dd784bf1eff06ae6691fe89b0347f25e44df60779e3a90c3db6f72"
}
},
"36": {
"version": "36.0.2"

View File

@@ -0,0 +1,12 @@
{
"repository": "https://github.com/deadlinks/cargo-deadlinks",
"tag_prefix": "",
"rust_crate": "${package}",
"asset_name": "${package}-${rust_target_os}",
"bin": "${package}",
"platform": {
"x86_64_linux_musl": {},
"x86_64_macos": {},
"x86_64_windows": {}
}
}

View File

@@ -0,0 +1,23 @@
# Changelog
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](https://semver.org).
<!--
Note: In this file, do not use the hard wrap in the middle of a sentence for compatibility with GitHub comment style markdown rendering.
-->
## [Unreleased]
## [0.1.1] - 2025-09-20
- Add `HostPlatform::{powerpc64le_linux_gnu,powerpc64le_linux_musl,riscv64_linux_gnu,riscv64_linux_musl,s390x_linux_gnu,s390x_linux_musl}` ([#1133](https://github.com/taiki-e/install-action/pull/1133))
## [0.1.0] - 2025-01-28
Initial release
[Unreleased]: https://github.com/taiki-e/install-action/compare/install-action-manifest-schema-0.1.1...HEAD
[0.1.1]: https://github.com/taiki-e/install-action/compare/install-action-manifest-schema-0.1.0...install-action-manifest-schema-0.1.1
[0.1.0]: https://github.com/taiki-e/install-action/releases/tag/install-action-manifest-schema-0.1.0

View File

@@ -1,6 +1,6 @@
[package]
name = "install-action-manifest-schema"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
rust-version = "1.79" # Align to cargo-binstall: https://crates.io/crates/cargo-binstall
license = "Apache-2.0 OR MIT"