mirror of
https://github.com/taiki-e/install-action.git
synced 2026-05-17 01:32:39 +08:00
Compare commits
23 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
903c2fc33c | ||
|
|
3771e22aa8 | ||
|
|
10f8a660b5 | ||
|
|
deee85b818 | ||
|
|
4c884c9877 | ||
|
|
ecbe13d28c | ||
|
|
f0fad5113a | ||
|
|
925f8c12d4 | ||
|
|
e178e985ab | ||
|
|
bb5a597fba | ||
|
|
5b0cc41094 | ||
|
|
29ac3ef120 | ||
|
|
1dfd580637 | ||
|
|
382f8b4df2 | ||
|
|
184183c240 | ||
|
|
b1b1cbb6bf | ||
|
|
8b48705aa3 | ||
|
|
6fce9480bd | ||
|
|
ebad682ab8 | ||
|
|
85af572b4f | ||
|
|
0186a4ad05 | ||
|
|
5cd89bdf3f | ||
|
|
d7c428cc25 |
24
CHANGELOG.md
24
CHANGELOG.md
@@ -10,6 +10,26 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [2.78.2] - 2026-05-16
|
||||
|
||||
- Update `wasm-pack@latest` to 0.15.0.
|
||||
|
||||
- Update `zizmor@latest` to 1.25.0.
|
||||
|
||||
- Update `mise@latest` to 2026.5.9.
|
||||
|
||||
- Update `cargo-nextest@latest` to 0.9.135.
|
||||
|
||||
- Update `cyclonedx@latest` to 0.32.0.
|
||||
|
||||
- Update `prek@latest` to 0.4.0.
|
||||
|
||||
## [2.78.1] - 2026-05-15
|
||||
|
||||
- Update `mise@latest` to 2026.5.7.
|
||||
|
||||
- Diagnostic improvements.
|
||||
|
||||
## [2.78.0] - 2026-05-14
|
||||
|
||||
- Support `cargo-mutants`. ([#1812](https://github.com/taiki-e/install-action/pull/1812), thanks @jakewimmer)
|
||||
@@ -6540,7 +6560,9 @@ Note: This release is considered a breaking change because installing on version
|
||||
|
||||
Initial release
|
||||
|
||||
[Unreleased]: https://github.com/taiki-e/install-action/compare/v2.78.0...HEAD
|
||||
[Unreleased]: https://github.com/taiki-e/install-action/compare/v2.78.2...HEAD
|
||||
[2.78.2]: https://github.com/taiki-e/install-action/compare/v2.78.1...v2.78.2
|
||||
[2.78.1]: https://github.com/taiki-e/install-action/compare/v2.78.0...v2.78.1
|
||||
[2.78.0]: https://github.com/taiki-e/install-action/compare/v2.77.7...v2.78.0
|
||||
[2.77.7]: https://github.com/taiki-e/install-action/compare/v2.77.6...v2.77.7
|
||||
[2.77.6]: https://github.com/taiki-e/install-action/compare/v2.77.5...v2.77.6
|
||||
|
||||
@@ -4,8 +4,8 @@ description: GitHub Action for installing development tools
|
||||
inputs:
|
||||
tool:
|
||||
description: Tools to install (whitespace or comma separated list)
|
||||
required: true
|
||||
# default: #publish:tool
|
||||
required: false
|
||||
default: sccache
|
||||
checksum:
|
||||
description: Whether to enable checksums (strongly discouraged to disable)
|
||||
required: false
|
||||
|
||||
12
main.sh
12
main.sh
@@ -478,7 +478,7 @@ fi
|
||||
tool="${INPUT_TOOL:-}"
|
||||
tools=()
|
||||
if [[ -n "${tool}" ]]; then
|
||||
while read -rd,; do
|
||||
while IFS= read -rd,; do
|
||||
tools+=("${REPLY}")
|
||||
done < <(normalize_comma_or_space_separated "${tool}")
|
||||
fi
|
||||
@@ -786,7 +786,7 @@ for tool in "${tools[@]}"; do
|
||||
if [[ -n "${additional}" ]]; then
|
||||
component=''
|
||||
target=''
|
||||
while read -rd+; do
|
||||
while IFS= read -rd+; do
|
||||
case "${REPLY}" in
|
||||
# Last checked: nightly-2026-05-03
|
||||
# rustup component list
|
||||
@@ -979,9 +979,9 @@ for tool in "${tools[@]}"; do
|
||||
read_manifest "${tool}" "${version}"
|
||||
if [[ "${download_info}" == "null" ]]; then
|
||||
if [[ "${rust_crate}" == "null" ]] || [[ "${fallback}" == "none" ]]; then
|
||||
bail "${tool}@${version} for '${host_arch}_${host_os}' is not supported"
|
||||
bail "${tool} is supported but version ${version} for '${host_arch}_${host_os}' is not supported (updating install-action might resolve this)"
|
||||
fi
|
||||
warn "${tool}@${version} for '${host_arch}_${host_os}' is not supported; fallback to ${fallback}"
|
||||
warn "${tool} is supported but version ${version} for '${host_arch}_${host_os}' is not supported (updating install-action might resolve this); fallback to ${fallback}"
|
||||
case "${version}" in
|
||||
latest) unsupported_tools+=("${rust_crate}") ;;
|
||||
*) unsupported_tools+=("${rust_crate}@${version}") ;;
|
||||
@@ -1073,7 +1073,7 @@ done
|
||||
if [[ ${#unsupported_tools[@]} -gt 0 ]]; then
|
||||
IFS=','
|
||||
case "${fallback}" in
|
||||
none) bail "install-action does not support ${unsupported_tools[*]} (fallback is disabled by 'fallback: none' input option)" ;;
|
||||
none) bail "install-action does not support ${unsupported_tools[*]} (updating install-action might resolve this); aborting because fallback is disabled by 'fallback: none' input option" ;;
|
||||
cargo-binstall)
|
||||
case "${host_arch}" in
|
||||
x86_64 | aarch64 | riscv64) ;;
|
||||
@@ -1084,7 +1084,7 @@ if [[ ${#unsupported_tools[@]} -gt 0 ]]; then
|
||||
esac
|
||||
;;
|
||||
esac
|
||||
info "install-action does not support ${unsupported_tools[*]}; fallback to ${fallback}"
|
||||
info "install-action does not support ${unsupported_tools[*]} (updating install-action might resolve this); fallback to ${fallback}"
|
||||
IFS=$'\n\t'
|
||||
case "${fallback}" in
|
||||
cargo-binstall)
|
||||
|
||||
74
manifests/cargo-nextest.json
generated
74
manifests/cargo-nextest.json
generated
@@ -27,10 +27,80 @@
|
||||
}
|
||||
},
|
||||
"latest": {
|
||||
"version": "0.9.133"
|
||||
"version": "0.9.135"
|
||||
},
|
||||
"0.9": {
|
||||
"version": "0.9.133"
|
||||
"version": "0.9.135"
|
||||
},
|
||||
"0.9.135": {
|
||||
"previous_stable_version": "0.9.134",
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DEB1F3CDBFBD91",
|
||||
"hash": "547090eba95177d474ce7ec9d73d5d7d54363fd2bb180b7168aac1d72b2776de"
|
||||
},
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEB1F365575FAB",
|
||||
"hash": "c485608adb7ed4a81abdbe432b7fe47d053fca45d645d1786f4e97aa8344cdc1"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEB1F3416FF485",
|
||||
"hash": "63d5ff2cffabe7fc9b4ee5ab7e7569cf52203a95060eeca987bdadf844e20a6e"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEB1F3F01F0DC7",
|
||||
"hash": "db1d77573f0d4d2fe0927e3b044196cf0c69c19aa41c57b4637d6dca47f93420"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"etag": "0x8DEB1F33352DBFA",
|
||||
"hash": "3cbe45dcea1a11e4134a50b5d32827db942bc070c96d6eb8b97b84a88dccba62"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEB1F33F808BEC",
|
||||
"hash": "1bd819f4a3d4bef2479d128b161718c1097818e42353dec656d176bd0b0f971d"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEB1F42AE18A55",
|
||||
"hash": "d710fd72305af5ec235e3a588af46c9781200d92139c19ded1f293630252efb2"
|
||||
},
|
||||
"riscv64_linux_gnu": {
|
||||
"etag": "0x8DEB1F3E113245E",
|
||||
"hash": "623e4640572a4de6a7e4009704673ca83f1f4b1ccc73ce6f3cf006c9da4273b1"
|
||||
}
|
||||
},
|
||||
"0.9.134": {
|
||||
"previous_stable_version": "0.9.133",
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DEB1E36F11ED7F",
|
||||
"hash": "3b4f60a5da132c1ccfe69377870dad227b3a05195cf8c147b1d3ce59a4f55a35"
|
||||
},
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEB1E224755F1E",
|
||||
"hash": "6a7ef4ba6aaa6b11229d610bf0dcfeacf49e5394b0dafdc9d22989d0588b88f6"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEB1E23A6E0814",
|
||||
"hash": "42e692d0f1976da9adefe28a6d9608b0d9e19f4c8043a71bef878a2e19f456ec"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEB1E33C04E37A",
|
||||
"hash": "3eddef2e68b4cc4c40c9146f2a0b9b93f77364c5d89024c87502fdf4f53083ea"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"etag": "0x8DEB1E36DA48F73",
|
||||
"hash": "1de6c57858c71d0e7d455e41e5d38b4ff21c6c7fad066162cca04ea389980727"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEB1E28562F471",
|
||||
"hash": "ee68356006f7671e03ea62a13ada82fb00b064a9c0979f56797e8c994949ef41"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEB1E3BD39E9E6",
|
||||
"hash": "511b2e114cd39695d0f49f6cc9a1117803e69599dede78254298a8fbd66362a6"
|
||||
},
|
||||
"riscv64_linux_gnu": {
|
||||
"etag": "0x8DEB1E1BC46DD67",
|
||||
"hash": "6d8b199bdd9dead86957970225e53a681424a10d8d14f1ec58afdfac8d1c2ce6"
|
||||
}
|
||||
},
|
||||
"0.9.133": {
|
||||
"previous_stable_version": "0.9.132",
|
||||
|
||||
31
manifests/cyclonedx.json
generated
31
manifests/cyclonedx.json
generated
@@ -21,7 +21,36 @@
|
||||
}
|
||||
},
|
||||
"latest": {
|
||||
"version": "0.31.0"
|
||||
"version": "0.32.0"
|
||||
},
|
||||
"0.32": {
|
||||
"version": "0.32.0"
|
||||
},
|
||||
"0.32.0": {
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DEB1C0D0F942CE",
|
||||
"hash": "454879e6a4a405c8a13bff49b8982adcb0596f3019b26b0811c66e4d7f0783e1"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEB1C0E6600350",
|
||||
"hash": "a13a5de12d10cfccf8f222614b99af243fee5491b0ec73850b1d6fa050d4ad4a"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEB1C0DDE8B2F2",
|
||||
"hash": "b1c00dbb40e628ec8c1252771871341ac4d4aaf032f832d83bd22cb2b1d258ae"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"etag": "0x8DEB1C0D8F3B26A",
|
||||
"hash": "abf0b7c5648a5b127791d691cad41f004aceea27c75bb42c9572fdc9694770cf"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEB1C106F3BE09",
|
||||
"hash": "83be8a9599f1dce1252208bd4d0bb15308eca0546814fb72b48b7246d35e832e"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEB1C0E3DAA66B",
|
||||
"hash": "88a8f99667909da3b69b74ab0368082305d52595d1dfc694114e29b4d9139d20"
|
||||
}
|
||||
},
|
||||
"0.31": {
|
||||
"version": "0.31.0"
|
||||
|
||||
22
manifests/gungraun-runner.json
generated
22
manifests/gungraun-runner.json
generated
@@ -25,6 +25,28 @@
|
||||
"latest": {
|
||||
"version": "0.18.2"
|
||||
},
|
||||
"0.19.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEB2939FC5A8D0",
|
||||
"hash": "3048fd4f7642385564c5a9dafe8ed483f3bcf07bd8d853c41795ebb64821bfe2"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"etag": "0x8DEB29373596C89",
|
||||
"hash": "69a52c4165d27c74acbe9ab06ce8bf838d74bc1759246612fdb6e096309298fe"
|
||||
},
|
||||
"powerpc64le_linux_gnu": {
|
||||
"etag": "0x8DEB2936A9F24F3",
|
||||
"hash": "27a69e4a1daf5e644914d3ca1a3fd93bdda5f47536f61c6b7b11d933c4e2386e"
|
||||
},
|
||||
"riscv64_linux_gnu": {
|
||||
"etag": "0x8DEB2936EA942A0",
|
||||
"hash": "807cd7dd58ae90e02096c4f955008c7ab84366300ddd23690af671b428bfd859"
|
||||
},
|
||||
"s390x_linux_gnu": {
|
||||
"etag": "0x8DEB293B0817BFE",
|
||||
"hash": "6ae6eb74c8daf0542fd172367463f6ea620738bec3ade22518807a5dc0cf16a9"
|
||||
}
|
||||
},
|
||||
"0.18": {
|
||||
"version": "0.18.2"
|
||||
},
|
||||
|
||||
84
manifests/mise.json
generated
84
manifests/mise.json
generated
@@ -27,13 +27,91 @@
|
||||
}
|
||||
},
|
||||
"latest": {
|
||||
"version": "2026.5.6"
|
||||
"version": "2026.5.9"
|
||||
},
|
||||
"2026": {
|
||||
"version": "2026.5.6"
|
||||
"version": "2026.5.9"
|
||||
},
|
||||
"2026.5": {
|
||||
"version": "2026.5.6"
|
||||
"version": "2026.5.9"
|
||||
},
|
||||
"2026.5.10": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEB33BE5AD7B48",
|
||||
"hash": "0badd6ac6188cbf4aa7d9159c612ed54b26d966ba1e9ea4841f6c973e13d90ca"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEB33BE7C8F2F5",
|
||||
"hash": "4d1b38f30589e96dc5280280caf9f16ce40978aa1dab606a3cbff710d2c43ddb"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEB33BE917A0E1",
|
||||
"hash": "0c23d98ec8eafc5eb790188df68d402ad545913673cd40da41d183b6f3c5ae2b"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEB33BE27D3761",
|
||||
"hash": "3a4cf82ea33ee9ea903fe0d7bcb037b917a53aa155d6f5a7388d7661a47f6a73"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEB33BE703C1C8",
|
||||
"hash": "f3eb105f2dc79dd920918fb38f0825f9ec9f0bef3a4478e201a94a352743a1fb"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEB33BE88C0393",
|
||||
"hash": "b2764f48f3c910f7a10cb540ea84c476e9ba79937bf7fde4e67826d7270b2c3e"
|
||||
}
|
||||
},
|
||||
"2026.5.9": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEB275BF874C14",
|
||||
"hash": "13fa1fcad6a0e0e1cc8a016601e72a9ca203aa2a4a5f9f845e63aa735ce15540"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEB275C29D6F60",
|
||||
"hash": "29cb947094aa0b5097c378ad02f7ebdfdfe2cec0e123232d93744afda52266b2"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEB275C43667B3",
|
||||
"hash": "c0de9d8206636dc0627159f0ba87b2ed3287bfdc54676b99d73d9e76d24f43a3"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEB275BA8A4112",
|
||||
"hash": "adedc3ea9e888cd4856aff142aa27783e06a9df08a61e388fd482776a9351eec"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEB275C15218BC",
|
||||
"hash": "1695b7b2e7b1ed601a80e6f4a1379ace88b146a8f8d73c1c388a9a57fffe1968"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEB275C38150CE",
|
||||
"hash": "4968e47666292e1f890ff3fa99bc4970c6fe94cafe327a4b4c605233463eb307"
|
||||
}
|
||||
},
|
||||
"2026.5.8": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEB1FDEEFE723C",
|
||||
"hash": "4bfcd3a5c513bfa6036d8d7cad3cfb6989155d913d39333ab493d1988bc93e62"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEB1FDF1C91467",
|
||||
"hash": "05e72a6f57017a3edbde784720e7d11ff79ac9b48ad4aa8f4ca2b1dcc638da1b"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEB1FDF35DCBAC",
|
||||
"hash": "1e58abd24ac23aa09c6d9ed35762ce27c1abd1c0739397a1a2cd9c0f56f9bff9"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEB1FDEAF53C58",
|
||||
"hash": "80036a854f6e4b0d96ca86cea6b72355b618516441728f067c6b3a4d79103c47"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEB1FDF0EB1FB4",
|
||||
"hash": "7f9733967c152753a4dd5c99a90b5632c4efdfd157ed534d5b3c78d9d43cf9a6"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEB1FDF2E0C3E4",
|
||||
"hash": "e174c7a09b8f61c3758162e8a1b13b1529d41eb8927b53bb10de8bea7168cfa1"
|
||||
}
|
||||
},
|
||||
"2026.5.7": {
|
||||
"x86_64_linux_musl": {
|
||||
|
||||
5
manifests/prek.json
generated
5
manifests/prek.json
generated
@@ -39,7 +39,10 @@
|
||||
}
|
||||
},
|
||||
"latest": {
|
||||
"version": "0.3.13"
|
||||
"version": "0.4.0"
|
||||
},
|
||||
"0.4": {
|
||||
"version": "0.4.0"
|
||||
},
|
||||
"0.4.0": {
|
||||
"x86_64_linux_musl": {
|
||||
|
||||
27
manifests/wasm-pack.json
generated
27
manifests/wasm-pack.json
generated
@@ -23,7 +23,32 @@
|
||||
}
|
||||
},
|
||||
"latest": {
|
||||
"version": "0.14.0"
|
||||
"version": "0.15.0"
|
||||
},
|
||||
"0.15": {
|
||||
"version": "0.15.0"
|
||||
},
|
||||
"0.15.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEB25AE375D548",
|
||||
"hash": "c09f971ecaed9a2efc80fdcea7a00ef6b53c7fadc8c57d1f61b53a6aa66b668a"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEB25AE6000D91",
|
||||
"hash": "d3f1a4a33e95f8f0d7801b024e08624c479999ac96aa150908b2394015cd0363"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEB25AE48D84D3",
|
||||
"hash": "518dc51180c7bc864699c9279b3bc99025bc109123e0249a34ba34d130a509bf"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEB25AE40282F1",
|
||||
"hash": "e17ef0806381c3a0acb9c9ddad643a49facaa5a2ecf657a421d4d8f3357a24b7"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEB25AE6C97FE0",
|
||||
"hash": "0abff4a03d670b6c00ea31d0e1608a72407e355f3d3765e9c30eb45cd5b7e318"
|
||||
}
|
||||
},
|
||||
"0.14": {
|
||||
"version": "0.14.0"
|
||||
|
||||
22
manifests/wasm-tools.json
generated
22
manifests/wasm-tools.json
generated
@@ -28,6 +28,28 @@
|
||||
"1": {
|
||||
"version": "1.248.0"
|
||||
},
|
||||
"1.249.0": {
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DEB299AA3D6D62",
|
||||
"hash": "d9b2ef3031b009cf2bfa0b0e7a8a159843d4a7d483b65f998d0c52253de2fb23"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEB299AA638F2F",
|
||||
"hash": "f3da9ded0e7a78d6559cfbc76cca342ff347342930d892c6ece76b76cd023f7b"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEB299AA5CDFF4",
|
||||
"hash": "37803b65dccdfe8fb25c3468ce763bbb5676bc4306ca8cb1f4881946fa58bdf4"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"etag": "0x8DEB299A9C9354D",
|
||||
"hash": "8ee09f5fbd18b46232e4cd3c53bb8c86169064b59e5c05e90da96d6129cf5213"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEB299A9C95C34",
|
||||
"hash": "6b8fec94840635e261395883a1cd1b1f7fe6e5c44d364a8cbeac2552567a6117"
|
||||
}
|
||||
},
|
||||
"1.248": {
|
||||
"version": "1.248.0"
|
||||
},
|
||||
|
||||
73
manifests/zizmor.json
generated
73
manifests/zizmor.json
generated
@@ -18,10 +18,79 @@
|
||||
}
|
||||
},
|
||||
"latest": {
|
||||
"version": "1.24.1"
|
||||
"version": "1.25.0"
|
||||
},
|
||||
"1": {
|
||||
"version": "1.24.1"
|
||||
"version": "1.25.0"
|
||||
},
|
||||
"1.25": {
|
||||
"version": "1.25.0"
|
||||
},
|
||||
"1.25.2": {
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DEB3144492DC4D",
|
||||
"hash": "aa1facd105f0d83fe5c55b1adcd9d7417de5d83aa27471f91dc0b66cf3803577"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEB31444881304",
|
||||
"hash": "353271b9ec301dd4ba158af481323c831c6e9b494d5ac3f5aa58cf4b207699cc"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEB31444AA6870",
|
||||
"hash": "65d46a8144f701200621b580f632076d80d082d60856de9f88793a95fb5882d7"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"etag": "0x8DEB314448B43BA",
|
||||
"hash": "4b4b9491112c2a09b318101c0d3349b73af1c4f532e097dd6d0164f2abda760d"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEB314448997E5",
|
||||
"hash": "624ef0e09521aecd862126be0f6d7754669af2646750d68ac48a114be33c3146"
|
||||
}
|
||||
},
|
||||
"1.25.1": {
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DEB2BDA03A3439",
|
||||
"hash": "3f481529c684f20ff421fe0dcf3c874eeb23b0ba31c45e7ad3ddf34c8d165648"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEB2BDA0379F16",
|
||||
"hash": "805d11869ab436bc7ce7d3296e657cf843b2cc3c87693d8a67e35329d897c06c"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEB2BDA02DE60F",
|
||||
"hash": "c667587918f9f014a85d7955a87df59dc87dbc0f50969d8ae19a3dfc403419fd"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"etag": "0x8DEB2BDA03509F1",
|
||||
"hash": "6784343853c37957df70e305fcea00b47d38a02fc30320442c23561286f3a8fc"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEB2BDA02D2395",
|
||||
"hash": "2f4d8a7a331f282e813feb5ffe133df498c57fe803ccd9ad17707f7a0dd203ed"
|
||||
}
|
||||
},
|
||||
"1.25.0": {
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DEB1FA8CE475E0",
|
||||
"hash": "a16853f39c9e059aed04f3f7961acb75468af67b235ae36a9faff337d61e3d24"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEB1FA8CF0019E",
|
||||
"hash": "3c4b4faeb40779cbb0063eb934809c03a570dd367892c2b41a1e87e27721da01"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEB1FA8CE317D7",
|
||||
"hash": "63620198d7c1292fdcc3500abfc7b72f706c99807c5f76e96ac127f1d62254d3"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"etag": "0x8DEB1FA8CE8B6DF",
|
||||
"hash": "6214a8e291a07a3b33c652260ee5caa6501e192cf20ff3a06db7a350e93bad93"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEB1FA8CE64898",
|
||||
"hash": "d57861fd237055b2730e6a008289ffd8e8107e7d348ca31564d25863b7c66e64"
|
||||
}
|
||||
},
|
||||
"1.24": {
|
||||
"version": "1.24.1"
|
||||
|
||||
Reference in New Issue
Block a user