mirror of
https://github.com/taiki-e/install-action.git
synced 2026-04-29 10:30:23 +00:00
Compare commits
17 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
328a871ad8 | ||
|
|
b8df13537a | ||
|
|
09ab1d9849 | ||
|
|
4168e018ba | ||
|
|
7bc99eee1f | ||
|
|
b3b4c93c56 | ||
|
|
1558ceeaae | ||
|
|
26d156ba84 | ||
|
|
f2b7c0747d | ||
|
|
cc168bc1a8 | ||
|
|
0d865d5cc6 | ||
|
|
78e479f933 | ||
|
|
3da8dc3058 | ||
|
|
dcad28ece2 | ||
|
|
2c637c3acd | ||
|
|
ef1e8ec3f0 | ||
|
|
0673e7604e |
1
.github/.cspell/project-dictionary.txt
vendored
1
.github/.cspell/project-dictionary.txt
vendored
@@ -27,7 +27,6 @@ pluginconf
|
||||
ppcle
|
||||
prek
|
||||
quickinstall
|
||||
rclone
|
||||
rdme
|
||||
rootfs
|
||||
sccache
|
||||
|
||||
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
@@ -11,7 +11,7 @@ on:
|
||||
- dev
|
||||
- ci-*
|
||||
schedule:
|
||||
- cron: '0 0 * * *'
|
||||
- cron: '0 2 * * *'
|
||||
workflow_dispatch:
|
||||
|
||||
env:
|
||||
|
||||
1
.github/workflows/release.yml
vendored
1
.github/workflows/release.yml
vendored
@@ -44,4 +44,5 @@ jobs:
|
||||
permissions:
|
||||
contents: write # for taiki-e/create-gh-release-action
|
||||
id-token: write # for rust-lang/crates-io-auth-action
|
||||
attestations: write # unused (used when options for uploading binaries are set)
|
||||
secrets: inherit
|
||||
|
||||
31
CHANGELOG.md
31
CHANGELOG.md
@@ -10,6 +10,32 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [2.69.9] - 2026-03-25
|
||||
|
||||
- Update `uv@latest` to 0.11.1.
|
||||
|
||||
- Update `osv-scanner@latest` to 2.3.5.
|
||||
|
||||
- Update `mise@latest` to 2026.3.14.
|
||||
|
||||
## [2.69.8] - 2026-03-24
|
||||
|
||||
- Update `just@latest` to 1.48.0.
|
||||
|
||||
- Update `uv@latest` to 0.11.0.
|
||||
|
||||
- Update `rclone@latest` to 1.73.3.
|
||||
|
||||
- Update `mise@latest` to 2026.3.13.
|
||||
|
||||
## [2.69.7] - 2026-03-23
|
||||
|
||||
- Update `prek@latest` to 0.3.8.
|
||||
|
||||
- Update `mise@latest` to 2026.3.12.
|
||||
|
||||
- Update `cargo-valgrind@latest` to 2.4.1.
|
||||
|
||||
## [2.69.6] - 2026-03-21
|
||||
|
||||
- Support signature verification for `mise` and `syft`. ([#1611](https://github.com/taiki-e/install-action/pull/1611))
|
||||
@@ -5999,7 +6025,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.69.6...HEAD
|
||||
[Unreleased]: https://github.com/taiki-e/install-action/compare/v2.69.9...HEAD
|
||||
[2.69.9]: https://github.com/taiki-e/install-action/compare/v2.69.8...v2.69.9
|
||||
[2.69.8]: https://github.com/taiki-e/install-action/compare/v2.69.7...v2.69.8
|
||||
[2.69.7]: https://github.com/taiki-e/install-action/compare/v2.69.6...v2.69.7
|
||||
[2.69.6]: https://github.com/taiki-e/install-action/compare/v2.69.5...v2.69.6
|
||||
[2.69.5]: https://github.com/taiki-e/install-action/compare/v2.69.4...v2.69.5
|
||||
[2.69.4]: https://github.com/taiki-e/install-action/compare/v2.69.3...v2.69.4
|
||||
|
||||
4
main.sh
4
main.sh
@@ -56,7 +56,7 @@ download_and_checksum() {
|
||||
checksum=''
|
||||
fi
|
||||
info "downloading ${url}"
|
||||
retry curl --proto '=https' --tlsv1.2 -fsSL --retry 10 "${url}" -o tmp
|
||||
retry curl --proto '=https' --tlsv1.2 -fsSL "${url}" -o tmp
|
||||
if [[ -n "${checksum}" ]]; then
|
||||
info "verifying sha256 checksum for $(basename -- "${url}")"
|
||||
if type -P sha256sum >/dev/null; then
|
||||
@@ -233,7 +233,7 @@ read_manifest() {
|
||||
# TODO: don't hardcode tool name and use 'immediate_yank_reflection' field in base manifest.
|
||||
case "${tool}" in
|
||||
cargo-nextest)
|
||||
crate_info=$(curl -v --user-agent "${ACTION_USER_AGENT}" --proto '=https' --tlsv1.2 -fsSL --retry 10 "https://crates.io/api/v1/crates/${rust_crate}" || true)
|
||||
crate_info=$(retry curl --user-agent "${ACTION_USER_AGENT}" --proto '=https' --tlsv1.2 -fsSL "https://crates.io/api/v1/crates/${rust_crate}" || true)
|
||||
if [[ -n "${crate_info}" ]]; then
|
||||
while true; do
|
||||
yanked=$(jq -r ".versions[] | select(.num == \"${exact_version}\") | .yanked" <<<"${crate_info}")
|
||||
|
||||
20
manifests/cargo-valgrind.json
generated
20
manifests/cargo-valgrind.json
generated
@@ -13,13 +13,27 @@
|
||||
},
|
||||
"license_markdown": "[MIT](https://github.com/jfrimmel/cargo-valgrind/blob/master/LICENSE-MIT) OR [Apache-2.0](https://github.com/jfrimmel/cargo-valgrind/blob/master/LICENSE-APACHE)",
|
||||
"latest": {
|
||||
"version": "2.4.0"
|
||||
"version": "2.4.1"
|
||||
},
|
||||
"2": {
|
||||
"version": "2.4.0"
|
||||
"version": "2.4.1"
|
||||
},
|
||||
"2.4": {
|
||||
"version": "2.4.0"
|
||||
"version": "2.4.1"
|
||||
},
|
||||
"2.4.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE88031FA217E4",
|
||||
"hash": "85f0aba2bdde0d30bafa814a02229a56fd63b27623c25dfba57f49c40eeda762"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE88031F98D375",
|
||||
"hash": "80b1477c1eb35410b40b842aa655b37233416f9cad86f6a11c6107b8b97ddc22"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DE88031F98D375",
|
||||
"hash": "c9f36f03de6ae0cb773b3796f4dd738ebb85e00a59c1cb72bec49a267d83c5cf"
|
||||
}
|
||||
},
|
||||
"2.4.0": {
|
||||
"x86_64_linux_musl": {
|
||||
|
||||
33
manifests/just.json
generated
33
manifests/just.json
generated
@@ -22,10 +22,39 @@
|
||||
},
|
||||
"license_markdown": "[CC0-1.0](https://github.com/casey/just/blob/master/LICENSE)",
|
||||
"latest": {
|
||||
"version": "1.47.1"
|
||||
"version": "1.48.0"
|
||||
},
|
||||
"1": {
|
||||
"version": "1.47.1"
|
||||
"version": "1.48.0"
|
||||
},
|
||||
"1.48": {
|
||||
"version": "1.48.0"
|
||||
},
|
||||
"1.48.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE893FDA35D240",
|
||||
"hash": "a62e100de2922519ff3d6128f580837b4c0e197aa61a6fb448f43e50e7dd9b9b"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE893FD7207196",
|
||||
"hash": "9c4a018665ede3167db8210a6c846e59b675ecce71a35d2f802035fbc9199627"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DE89405E00E226",
|
||||
"hash": "06000d1e1f97155c6dff316f20fad029aa70f69c4ecbe2fbe5b821d9bb79aef0"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DE893FE55F2345",
|
||||
"hash": "3c28914f0059161bc263c41db0ed3f786866cfb9632d1ee7809f529c8f18835e"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE893FEEDF61A3",
|
||||
"hash": "507edd5cbe97e13f048f650e52ae6cf3fd6c7464b18abe64fb01eca1bd65f8a2"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DE894023163D15",
|
||||
"hash": "5fc53507e86334e3f0111b674c72fbcf7d9c53fe6a0f5d7dc6c6afc8903d44b2"
|
||||
}
|
||||
},
|
||||
"1.47": {
|
||||
"version": "1.47.1"
|
||||
|
||||
84
manifests/mise.json
generated
84
manifests/mise.json
generated
@@ -28,13 +28,91 @@
|
||||
},
|
||||
"license_markdown": "[MIT](https://github.com/jdx/mise/blob/main/LICENSE)",
|
||||
"latest": {
|
||||
"version": "2026.3.10"
|
||||
"version": "2026.3.14"
|
||||
},
|
||||
"2026": {
|
||||
"version": "2026.3.10"
|
||||
"version": "2026.3.14"
|
||||
},
|
||||
"2026.3": {
|
||||
"version": "2026.3.10"
|
||||
"version": "2026.3.14"
|
||||
},
|
||||
"2026.3.14": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE89F2A845625B",
|
||||
"hash": "b34d9179dcf3622b9aa1aa9c4d8361cce743314612b11bf62fa8589a4d52a5db"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE89F2ABB3F018",
|
||||
"hash": "8ab0deb1e839b9a12b6520fe7e7377523de2140811baa90b98aef27cfe2ffc32"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DE89F2ACEC2233",
|
||||
"hash": "fc91b0b301dc4d2f914afb6f71ef46b01eee47ba1f5ec1084413c2e197480509"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DE89F2A3C1BA78",
|
||||
"hash": "42c80e03ac14591a9fc73864da0b46e9529822c84e0b6d7834fc65d5fe3ff1f7"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE89F2AA7AFB84",
|
||||
"hash": "dd9296e67a58cd119dba83e8ed4c6c4d566ae94827c4ee4a24c7b7001f6054ec"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DE89F2AC9479C3",
|
||||
"hash": "7c3bddf4ef2206ef08aa0e73426f6619ea5ccd7f0d92dfafb6ff482a88e14dde"
|
||||
}
|
||||
},
|
||||
"2026.3.13": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE88EB0574D86B",
|
||||
"hash": "2b409c40dc02bd3b1ba4061760aa81f3b4734fa7d7de8c5e1db4c6ca5ede70d8"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE88EB09453B8C",
|
||||
"hash": "af5610f5abbc67581d04559f65ea2afbf04c5a15d1eef1eb27ca985f52424153"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DE88EB09D4CBF0",
|
||||
"hash": "8879a21bdaab28f52f8981a452cb67c83de9cac863eabe878574076f986ad6ba"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DE88EAFF42F4FF",
|
||||
"hash": "d98665273a14eb2c599ec0fc66f4a5e6ac0b9fad624d55d8a32b7dc9017693c5"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE88EB07D092EF",
|
||||
"hash": "14de0cc332f4effae9c06e201b32adc17368a169485ce1cbfa2e25c3a006d6a7"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DE88EB09C2DEBC",
|
||||
"hash": "f55ce0e157606ae20c3ea5f91c7b8c5390888bb00143d043ed58131c89161f5d"
|
||||
}
|
||||
},
|
||||
"2026.3.12": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE886122F1FBF4",
|
||||
"hash": "b6bdc23b08bccfcc77b61d35b286e20de1e0192447e8fda64b2bf60c5328b452"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE88612512C4AA",
|
||||
"hash": "4f65f7f72c14641ad78670ec2c403d3eb9a4681e2fa064385e80a22a109bfe2c"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DE886125F154A2",
|
||||
"hash": "528d5f9bfabb8eae06964c0e112f9711a4af4315bfed96f6f50b6c4b67ec6f37"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DE88611FFB72E8",
|
||||
"hash": "c27dd6a06053f6884c3f46763b64ef9c5e95fac7a9af89edea087b13cc68c521"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE88612449EE2B",
|
||||
"hash": "c9622be7ea2badc7bf3501cd9b5600e0bf993bf33c162844a4a6d79a2209e1f8"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DE8861257AFC36",
|
||||
"hash": "a65bea150a477f21faa62e24d45f811d2ede69da20aac43ad17ef3134bc516f4"
|
||||
}
|
||||
},
|
||||
"2026.3.10": {
|
||||
"x86_64_linux_musl": {
|
||||
|
||||
38
manifests/osv-scanner.json
generated
38
manifests/osv-scanner.json
generated
@@ -3,13 +3,45 @@
|
||||
"template": null,
|
||||
"license_markdown": "[Apache-2.0](https://github.com/google/osv-scanner/blob/main/LICENSE)",
|
||||
"latest": {
|
||||
"version": "2.3.3"
|
||||
"version": "2.3.5"
|
||||
},
|
||||
"2": {
|
||||
"version": "2.3.3"
|
||||
"version": "2.3.5"
|
||||
},
|
||||
"2.3": {
|
||||
"version": "2.3.3"
|
||||
"version": "2.3.5"
|
||||
},
|
||||
"2.3.5": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/google/osv-scanner/releases/download/v2.3.5/osv-scanner_linux_amd64",
|
||||
"etag": "0x8DE896B96DE50D8",
|
||||
"hash": "bb30c580afe5e757d3e959f4afd08a4795ea505ef84c46962b9a738aa573b41b"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/google/osv-scanner/releases/download/v2.3.5/osv-scanner_darwin_amd64",
|
||||
"etag": "0x8DE896B96B9DA4A",
|
||||
"hash": "3b1c72d59dcbad99fa4eb2c72bf2e82017f83e0268340e4b00af76a1fea32c85"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/google/osv-scanner/releases/download/v2.3.5/osv-scanner_windows_amd64.exe",
|
||||
"etag": "0x8DE896B94AF3EDE",
|
||||
"hash": "b165d33c08bda663119a459f5187e096d2525f888503495f5f34925741e981a2"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/google/osv-scanner/releases/download/v2.3.5/osv-scanner_linux_arm64",
|
||||
"etag": "0x8DE896B94B77302",
|
||||
"hash": "fa46ad2b3954db5d5335303d45de921613393285d9a93c140b63b40e35e9ce50"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/google/osv-scanner/releases/download/v2.3.5/osv-scanner_darwin_arm64",
|
||||
"etag": "0x8DE896B94F4856E",
|
||||
"hash": "b740efe0b08fb817865e818a498997d5f042f14b8eeafb6393176ce84dd09cf6"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/google/osv-scanner/releases/download/v2.3.5/osv-scanner_windows_arm64.exe",
|
||||
"etag": "0x8DE896B94B1AD12",
|
||||
"hash": "a3d2ffa712fd2376e88a02c98b917a87885c761d0d21980b8f5eabfb910cbcb8"
|
||||
}
|
||||
},
|
||||
"2.3.3": {
|
||||
"x86_64_linux_musl": {
|
||||
|
||||
38
manifests/prek.json
generated
38
manifests/prek.json
generated
@@ -40,10 +40,44 @@
|
||||
},
|
||||
"license_markdown": "[MIT](https://github.com/j178/prek/blob/master/LICENSE)",
|
||||
"latest": {
|
||||
"version": "0.3.6"
|
||||
"version": "0.3.8"
|
||||
},
|
||||
"0.3": {
|
||||
"version": "0.3.6"
|
||||
"version": "0.3.8"
|
||||
},
|
||||
"0.3.8": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE88B58DEC3E03",
|
||||
"hash": "732cfb03960e6dfd5df2cb67906797aa8831750ef3a6f6340ec2b90ee8b7a59f"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE88B58D79B1EF",
|
||||
"hash": "010198daf4e99a76d03a911973320542ffd7a04091cf7e86c60ac861187577f6"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DE88B58DA4B02B",
|
||||
"hash": "1da2735c31548dacd2751f90c15b5f643aa72f3053f366636f95153ee2c7186e"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DE88B58C3D8D01",
|
||||
"hash": "b88d96aef4ea84999d12958c390611d3a26194ee57225fe2ff15a9855e3a71bf"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE88B58BFA193A",
|
||||
"hash": "702fde4399fafb054ce85d0a64367689e3668b6475d732c4a46aae50cec0a4be"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DE88B58BF4A12E",
|
||||
"hash": "5ceb73fe9e18a987a498ced9b98a183d4110e3fdb534070d2d9911f860319e9f"
|
||||
},
|
||||
"riscv64_linux_gnu": {
|
||||
"etag": "0x8DE88B58D4F0179",
|
||||
"hash": "4c3677090f90f325b1f472e8b2db6f56647db794333ab0ee2656a91139ce9a27"
|
||||
},
|
||||
"s390x_linux_gnu": {
|
||||
"etag": "0x8DE88B58D875E2B",
|
||||
"hash": "cec915a22e4385110e2de8498d14c199ce6936d03d9d8340d166c57071ac1de8"
|
||||
}
|
||||
},
|
||||
"0.3.6": {
|
||||
"x86_64_linux_musl": {
|
||||
|
||||
32
manifests/rclone.json
generated
32
manifests/rclone.json
generated
@@ -28,13 +28,39 @@
|
||||
},
|
||||
"license_markdown": "[MIT](https://github.com/rclone/rclone/blob/master/COPYING)",
|
||||
"latest": {
|
||||
"version": "1.73.2"
|
||||
"version": "1.73.3"
|
||||
},
|
||||
"1": {
|
||||
"version": "1.73.2"
|
||||
"version": "1.73.3"
|
||||
},
|
||||
"1.73": {
|
||||
"version": "1.73.2"
|
||||
"version": "1.73.3"
|
||||
},
|
||||
"1.73.3": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE892EC705086A",
|
||||
"hash": "70278c22b98c7d02aed01828b70053904dbce4c8a1a15d7781d836c6fdb036ea"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE892FB5F06D97",
|
||||
"hash": "aaf209187baf40a4f6b732104121f81eedc0264aaa91186952ec3e78b82025b1"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DE892FF61A990A",
|
||||
"hash": "1c51142576194d124ffa9654f45bab972530da22a3a339509bf9bed399f9dea3"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DE892EE33A9BF9",
|
||||
"hash": "ed2a638b4cb15abe4f01d6d9c015f3a1cb41aa7a17c96db2725542c61f353b8e"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE892FBFE9C4F0",
|
||||
"hash": "ef046e9facd10d1fb39d0ef865d7fab9b5c6ca1597ac7c9167f3aa0c7747393f"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DE892FFEC4A4E3",
|
||||
"hash": "1ecc1da556965f678909390e723e52a5d53fa783fe0a4f224cfa818697c7a6c5"
|
||||
}
|
||||
},
|
||||
"1.73.2": {
|
||||
"x86_64_linux_musl": {
|
||||
|
||||
81
manifests/uv.json
generated
81
manifests/uv.json
generated
@@ -40,7 +40,86 @@
|
||||
},
|
||||
"license_markdown": "[Apache-2.0](https://github.com/astral-sh/uv/blob/main/LICENSE-APACHE) OR [MIT](https://github.com/astral-sh/uv/blob/main/LICENSE-MIT)",
|
||||
"latest": {
|
||||
"version": "0.10.12"
|
||||
"version": "0.11.1"
|
||||
},
|
||||
"0.11": {
|
||||
"version": "0.11.1"
|
||||
},
|
||||
"0.11.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE89FB8460A78F",
|
||||
"hash": "4e949471a95b37088a1ff1a585f69abed4d3cd3f921f50709a46b6ba62986d38"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE89FB83BE673F",
|
||||
"hash": "2103670e8e949605e51926c7b953923ff6f6befbfb55aee928f5e760c9c910f8"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DE89FB83DC2E07",
|
||||
"hash": "6659250cebbd3bb6ee48bcb21a3f0c6656450d63fb97f0f069bcb532bdb688ed"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DE89FB817388B2",
|
||||
"hash": "bd04ffce77ee8d77f39823c13606183581847c2f5dcd704f2ea0f15e376b1a27"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE89FB80F6A7B9",
|
||||
"hash": "f7815f739ed5d0e4202e6292acedb8659b9ae7de663d07188d8c6cbd7f96303f"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DE89FB8121316A",
|
||||
"hash": "b789db0c1504dd3b02c090bd5783487497cc46cc2eb71754874cdd1ef59eb52a"
|
||||
},
|
||||
"powerpc64le_linux_gnu": {
|
||||
"etag": "0x8DE89FB82F0DAD3",
|
||||
"hash": "e42d2abfac46f57564789e2bfa6dbea4ae3135892e36ae066ba0ae77b69bb676"
|
||||
},
|
||||
"riscv64_linux_gnu": {
|
||||
"etag": "0x8DE89FB8329D330",
|
||||
"hash": "5e2c757b35dab015ad37f74ee3e060208390b5f4defb6684876f1be0664f3f6e"
|
||||
},
|
||||
"s390x_linux_gnu": {
|
||||
"etag": "0x8DE89FB838E8C5E",
|
||||
"hash": "4208173c74e29572b799178709b5ed5828b24888659f944a4b47c0aaf78b42d2"
|
||||
}
|
||||
},
|
||||
"0.11.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE8928B52FBBAD",
|
||||
"hash": "bf6b0757c73d1726faa2a819b155d4d864919a95766720215d78fdcd09d42d26"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE8928B4D6406A",
|
||||
"hash": "31aaec764166af8885cf99321fd6ed24fef80225a6f26ed1ae8ce04111688a7e"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DE8928B4E8A258",
|
||||
"hash": "e21d00b172df83531564a95e75a2bdc0c59b471dbb3515f0c1b4d6ef657dc451"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DE8928B283EFC0",
|
||||
"hash": "658be4b8ec905635f1295468d4d5120d9e1ab1722eec9a104473ce993590babe"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE8928B1C32610",
|
||||
"hash": "0c0f32c6a3473c5928aff96c3233715edfc79290e892f255cac93710cde7b91a"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DE8928B21C538F",
|
||||
"hash": "95419e04a3ef5f13fb2a06bd6d787ba80a9d8981d6f097780e5a979817a2879d"
|
||||
},
|
||||
"powerpc64le_linux_gnu": {
|
||||
"etag": "0x8DE8928B425DF0C",
|
||||
"hash": "29f17fb43595492b1a36cda57df7adad74183132df32799d32897268ff4e26dd"
|
||||
},
|
||||
"riscv64_linux_gnu": {
|
||||
"etag": "0x8DE8928B411AA71",
|
||||
"hash": "84ef37dda1003c5b65fa6c8f84242d35a7fcc84cc5ea9490d702edc36cad1f67"
|
||||
},
|
||||
"s390x_linux_gnu": {
|
||||
"etag": "0x8DE8928B46BC14C",
|
||||
"hash": "b25be62f3b642348a2fece5c658624586661b8d1103891ab6903768b0529edc4"
|
||||
}
|
||||
},
|
||||
"0.10": {
|
||||
"version": "0.10.12"
|
||||
|
||||
@@ -446,7 +446,7 @@ fn main() {
|
||||
|| asset.name.contains(".pub")
|
||||
}) {
|
||||
eprintln!(
|
||||
"{package} may supports other signature verification method using {}",
|
||||
"{package} may support other signature verification methods using {}",
|
||||
asset.name
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user