mirror of
https://github.com/taiki-e/install-action.git
synced 2026-05-30 04:12:43 +08:00
Compare commits
45 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
15413b256f | ||
|
|
b57083657f | ||
|
|
40f9e23710 | ||
|
|
f54f6457c9 | ||
|
|
3a78467a76 | ||
|
|
f682b095b5 | ||
|
|
fb8dbde14c | ||
|
|
ed49864a27 | ||
|
|
1ed80c43c4 | ||
|
|
6ed6112eb9 | ||
|
|
e5595d7ea6 | ||
|
|
7a697beba8 | ||
|
|
846d47aa31 | ||
|
|
b90a8a9122 | ||
|
|
06339b4e20 | ||
|
|
528208bb6d | ||
|
|
17370fd159 | ||
|
|
13608cbb45 | ||
|
|
cfb00c7135 | ||
|
|
1421678089 | ||
|
|
60ae4ce63c | ||
|
|
9ab4a661ec | ||
|
|
f88f6cfa22 | ||
|
|
22ea1d2817 | ||
|
|
96a339da4a | ||
|
|
796dfb752b | ||
|
|
8f531eaecd | ||
|
|
8205558b9c | ||
|
|
eb38d1ae87 | ||
|
|
8a5a6fd714 | ||
|
|
a6f0b5b0ac | ||
|
|
920ab1831f | ||
|
|
6ca6ee06b5 | ||
|
|
50b919ba90 | ||
|
|
ee45616641 | ||
|
|
63a7dfdb6d | ||
|
|
3fb80a0867 | ||
|
|
d9be7d8cda | ||
|
|
7728147b45 | ||
|
|
6df4f17880 | ||
|
|
be60431cdc | ||
|
|
24db57b414 | ||
|
|
56d048e4be | ||
|
|
88886e83d3 | ||
|
|
1a101afe87 |
1
.github/.cspell/project-dictionary.txt
vendored
1
.github/.cspell/project-dictionary.txt
vendored
@@ -34,7 +34,6 @@ rdme
|
||||
sccache
|
||||
SHASUMS
|
||||
sigstore
|
||||
startswith
|
||||
syft
|
||||
tombi
|
||||
udeps
|
||||
|
||||
4
.github/dependabot.yml
vendored
4
.github/dependabot.yml
vendored
@@ -21,7 +21,3 @@ updates:
|
||||
commit-message:
|
||||
prefix: ''
|
||||
labels: []
|
||||
groups:
|
||||
github-actions:
|
||||
patterns:
|
||||
- '*'
|
||||
|
||||
24
.github/workflows/ci.yml
vendored
24
.github/workflows/ci.yml
vendored
@@ -31,26 +31,16 @@ concurrency:
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
miri:
|
||||
needs: tidy
|
||||
uses: taiki-e/github-actions/.github/workflows/miri.yml@931686d4e4cf88b13e790040727ccde2dba8ec62 # main
|
||||
with:
|
||||
# NB: sync with test job's --exclude option
|
||||
args: --exclude install-action-internal-codegen
|
||||
msrv:
|
||||
needs: tidy
|
||||
uses: taiki-e/github-actions/.github/workflows/msrv.yml@931686d4e4cf88b13e790040727ccde2dba8ec62 # main
|
||||
test-manifest-schema:
|
||||
needs: tidy
|
||||
uses: taiki-e/github-actions/.github/workflows/test.yml@931686d4e4cf88b13e790040727ccde2dba8ec62 # main
|
||||
with:
|
||||
# NB: sync with miri job's --exclude option
|
||||
test-args: --exclude install-action-internal-codegen
|
||||
no-std: false
|
||||
tidy:
|
||||
uses: taiki-e/github-actions/.github/workflows/tidy.yml@931686d4e4cf88b13e790040727ccde2dba8ec62 # main
|
||||
uses: taiki-e/github-actions/.github/workflows/tidy.yml@1bb80ca038216cd1fb7b6ca6d76240b3772963ab # main
|
||||
permissions:
|
||||
security-events: write # for github/codeql-action/*
|
||||
test-manifest-schema:
|
||||
needs: tidy
|
||||
uses: taiki-e/github-actions/.github/workflows/rust-test.yml@1bb80ca038216cd1fb7b6ca6d76240b3772963ab # main
|
||||
with:
|
||||
test-args: --exclude install-action-internal-codegen
|
||||
no-std: false
|
||||
|
||||
test:
|
||||
needs: tidy
|
||||
|
||||
4
.github/workflows/manifest.yml
vendored
4
.github/workflows/manifest.yml
vendored
@@ -19,10 +19,9 @@ concurrency:
|
||||
|
||||
jobs:
|
||||
manifest:
|
||||
uses: taiki-e/github-actions/.github/workflows/gen.yml@931686d4e4cf88b13e790040727ccde2dba8ec62 # main
|
||||
uses: taiki-e/github-actions/.github/workflows/gen.yml@1bb80ca038216cd1fb7b6ca6d76240b3772963ab # main
|
||||
permissions:
|
||||
contents: write # for creating branch for pr
|
||||
pull-requests: write # for gh pr review --approve
|
||||
secrets:
|
||||
PR_TOKEN_APP_PRIVATE_KEY: ${{ secrets.PR_TOKEN_APP_PRIVATE_KEY }}
|
||||
with:
|
||||
@@ -30,6 +29,5 @@ jobs:
|
||||
commit-script: tools/ci/manifest.sh
|
||||
title: Update manifest
|
||||
branch: update-manifest
|
||||
automerge: true
|
||||
install-cosign: true
|
||||
install-parse-changelog: true
|
||||
|
||||
4
.github/workflows/release.yml
vendored
4
.github/workflows/release.yml
vendored
@@ -28,7 +28,7 @@ concurrency:
|
||||
jobs:
|
||||
release:
|
||||
if: github.repository_owner == 'taiki-e' && inputs.target == 'install-action'
|
||||
uses: taiki-e/github-actions/.github/workflows/action-release.yml@931686d4e4cf88b13e790040727ccde2dba8ec62 # main
|
||||
uses: taiki-e/github-actions/.github/workflows/action-release.yml@1bb80ca038216cd1fb7b6ca6d76240b3772963ab # main
|
||||
permissions:
|
||||
contents: write # for taiki-e/create-gh-release-action
|
||||
secrets:
|
||||
@@ -40,7 +40,7 @@ jobs:
|
||||
|
||||
release-manifest-schema:
|
||||
if: github.repository_owner == 'taiki-e' && inputs.target == 'install-action-manifest-schema'
|
||||
uses: taiki-e/github-actions/.github/workflows/rust-release.yml@931686d4e4cf88b13e790040727ccde2dba8ec62 # main
|
||||
uses: taiki-e/github-actions/.github/workflows/rust-release.yml@1bb80ca038216cd1fb7b6ca6d76240b3772963ab # main
|
||||
permissions:
|
||||
contents: write # for taiki-e/create-gh-release-action
|
||||
id-token: write # for rust-lang/crates-io-auth-action
|
||||
|
||||
57
CHANGELOG.md
57
CHANGELOG.md
@@ -10,6 +10,54 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [2.79.13] - 2026-05-29
|
||||
|
||||
- Update `gungraun-runner@latest` to 0.19.1.
|
||||
|
||||
- Update `biome@latest` to 2.4.16.
|
||||
|
||||
## [2.79.12] - 2026-05-28
|
||||
|
||||
- Update `prek@latest` to 0.4.3.
|
||||
|
||||
- Remove uses of crates.io API, which potentially cases 403 error.
|
||||
|
||||
## [2.79.11] - 2026-05-28
|
||||
|
||||
- Update `vacuum@latest` to 0.26.8.
|
||||
|
||||
- Update `cargo-nextest@latest` to 0.9.137.
|
||||
|
||||
## [2.79.10] - 2026-05-27
|
||||
|
||||
- Update `tombi@latest` to 1.1.0.
|
||||
|
||||
- Update `prek@latest` to 0.4.2.
|
||||
|
||||
- Update `editorconfig-checker@latest` to 3.7.0.
|
||||
|
||||
## [2.79.9] - 2026-05-26
|
||||
|
||||
- Update `vacuum@latest` to 0.26.7.
|
||||
|
||||
- Update `tombi@latest` to 1.0.0.
|
||||
|
||||
## [2.79.8] - 2026-05-26
|
||||
|
||||
- Update `parse-dockerfile@latest` to 0.1.6.
|
||||
|
||||
- Update `knope@latest` to 0.23.0.
|
||||
|
||||
## [2.79.7] - 2026-05-24
|
||||
|
||||
- Update `typos@latest` to 1.46.3.
|
||||
|
||||
- Update `rclone@latest` to 1.74.2.
|
||||
|
||||
- Update `mise@latest` to 2026.5.15.
|
||||
|
||||
- Update `tombi@latest` to 0.11.7.
|
||||
|
||||
## [2.79.6] - 2026-05-23
|
||||
|
||||
- Update `wasm-bindgen@latest` to 0.2.122.
|
||||
@@ -6636,7 +6684,14 @@ Note: This release is considered a breaking change because installing on version
|
||||
|
||||
Initial release
|
||||
|
||||
[Unreleased]: https://github.com/taiki-e/install-action/compare/v2.79.6...HEAD
|
||||
[Unreleased]: https://github.com/taiki-e/install-action/compare/v2.79.13...HEAD
|
||||
[2.79.13]: https://github.com/taiki-e/install-action/compare/v2.79.12...v2.79.13
|
||||
[2.79.12]: https://github.com/taiki-e/install-action/compare/v2.79.11...v2.79.12
|
||||
[2.79.11]: https://github.com/taiki-e/install-action/compare/v2.79.10...v2.79.11
|
||||
[2.79.10]: https://github.com/taiki-e/install-action/compare/v2.79.9...v2.79.10
|
||||
[2.79.9]: https://github.com/taiki-e/install-action/compare/v2.79.8...v2.79.9
|
||||
[2.79.8]: https://github.com/taiki-e/install-action/compare/v2.79.7...v2.79.8
|
||||
[2.79.7]: https://github.com/taiki-e/install-action/compare/v2.79.6...v2.79.7
|
||||
[2.79.6]: https://github.com/taiki-e/install-action/compare/v2.79.5...v2.79.6
|
||||
[2.79.5]: https://github.com/taiki-e/install-action/compare/v2.79.4...v2.79.5
|
||||
[2.79.4]: https://github.com/taiki-e/install-action/compare/v2.79.3...v2.79.4
|
||||
|
||||
85
main.sh
85
main.sh
@@ -254,29 +254,6 @@ read_manifest() {
|
||||
exact_version="${version}"
|
||||
else
|
||||
manifest=$(jq -r --arg version "${exact_version}" '.[$version]' "${manifest_dir}/${tool}.json")
|
||||
if [[ "${rust_crate}" != "null" ]]; then
|
||||
# TODO: don't hardcode tool name and use 'immediate_yank_reflection' field in base manifest.
|
||||
case "${tool}" in
|
||||
cargo-nextest)
|
||||
crate_info=$(retry curl --user-agent "${ACTION_USER_AGENT}" --proto '=https' --tlsv1.2 -fsSL --retry 10 "https://crates.io/api/v1/crates/${rust_crate}" || true)
|
||||
if [[ -n "${crate_info}" ]]; then
|
||||
while true; do
|
||||
yanked=$(jq -r --arg version "${exact_version}" '.versions[] | select(.num == $version) | .yanked' <<<"${crate_info}")
|
||||
if [[ "${yanked}" != "true" ]]; then
|
||||
break
|
||||
fi
|
||||
previous_stable_version=$(jq -r '.previous_stable_version' <<<"${manifest}")
|
||||
if [[ "${previous_stable_version}" == "null" ]]; then
|
||||
break
|
||||
fi
|
||||
info "${tool}@${exact_version} is yanked; downgrade to ${previous_stable_version}"
|
||||
exact_version="${previous_stable_version}"
|
||||
manifest=$(jq -r --arg version "${exact_version}" '.[$version]' "${manifest_dir}/${tool}.json")
|
||||
done
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
fi
|
||||
|
||||
case "${host_os}" in
|
||||
@@ -1090,66 +1067,18 @@ if [[ ${#unsupported_tools[@]} -gt 0 ]]; then
|
||||
cargo-binstall)
|
||||
install_cargo_binstall
|
||||
# By default, cargo-binstall enforce downloads over secure transports only.
|
||||
# As a result, http will be disabled, and it will also set
|
||||
# min tls version to be 1.2
|
||||
# As a result, http will be disabled, and it will also set min tls version
|
||||
# to be 1.2
|
||||
binstall_args=(
|
||||
--force
|
||||
--no-confirm
|
||||
--locked
|
||||
# Since the build script can access the token when `cargo install` is called
|
||||
# within `cargo-binstall`, disables building from source in cargo-binstall
|
||||
# and fallback to `cargo install` which doesn't need the token.
|
||||
# TODO: once https://github.com/cargo-bins/cargo-binstall/pull/2533 merged,
|
||||
# we can remove this and use batch install again.
|
||||
--disable-strategies compile
|
||||
)
|
||||
unsupported_tools2=()
|
||||
for tool in "${unsupported_tools[@]}"; do
|
||||
if [[ -n "${token}" ]]; then
|
||||
if ! GITHUB_TOKEN="${token}" cargo-binstall binstall "${binstall_args[@]}" "${tool}"; then
|
||||
warn "cargo-binstall fallback does not support prebuilt binaries for ${tool} on this platform (${host_arch}); use 'cargo-install' fallback instead"
|
||||
unsupported_tools2+=("${tool}")
|
||||
fi
|
||||
else
|
||||
if ! cargo-binstall binstall "${binstall_args[@]}" "${tool}"; then
|
||||
warn "cargo-binstall fallback does not support prebuilt binaries for ${tool} on this platform (${host_arch}); use 'cargo-install' fallback instead"
|
||||
unsupported_tools2+=("${tool}")
|
||||
fi
|
||||
fi
|
||||
done
|
||||
if [[ ${#unsupported_tools2[@]} -gt 0 ]]; then
|
||||
for tool in "${unsupported_tools2[@]}"; do
|
||||
# This logic is from cache-cargo-install-action.
|
||||
cargo_args=(--locked)
|
||||
if [[ "${tool}" == *"@"* ]]; then
|
||||
version="${tool#*@}"
|
||||
tool="${tool%@*}"
|
||||
if [[ ! "${version}" =~ ^([1-9][0-9]*\.[0-9]+\.[0-9]+|0\.[1-9][0-9]*\.[0-9]+|^0\.0\.[0-9]+)(-[0-9A-Za-z\.-]+)?(\+[0-9A-Za-z\.-]+)?$|^latest$ ]]; then
|
||||
if [[ ! "${version}" =~ ^([1-9][0-9]*(\.[0-9]+(\.[0-9]+)?)?|0\.[1-9][0-9]*(\.[0-9]+)?|^0\.0\.[0-9]+)(-[0-9A-Za-z\.-]+)?(\+[0-9A-Za-z\.-]+)?$|^latest$ ]]; then
|
||||
bail "install-action does not support non-semver version: '${version}'"
|
||||
fi
|
||||
crate_info=$(retry curl --user-agent "${ACTION_USER_AGENT}" --proto '=https' --tlsv1.2 -fsSL --retry 10 "https://crates.io/api/v1/crates/${tool}")
|
||||
if [[ ! "${version}" =~ ^[0-9]+(\.[0-9]+)?$ ]]; then
|
||||
bail "install-action does not support non-semver version: '${version}'"
|
||||
fi
|
||||
# shellcheck disable=SC2207
|
||||
versions=($(jq -r --arg start "${version}." '.versions[] | select(.num | startswith($start)) | select(.yanked == false) | .num' <<<"${crate_info}"))
|
||||
full_version=''
|
||||
for v in ${versions[@]+"${versions[@]}"}; do
|
||||
if [[ "${v}" =~ ^[0-9]+\.[0-9]+\.[0-9]+(\+[0-9A-Za-z\.-]+)?$ ]]; then
|
||||
full_version="${v}"
|
||||
break
|
||||
fi
|
||||
done
|
||||
if [[ -z "${full_version}" ]]; then
|
||||
bail "no stable version found for ${tool} that match with '${version}.*'; if you want to install a pre-release version, please specify the full version"
|
||||
fi
|
||||
version="${full_version}"
|
||||
fi
|
||||
cargo_args+=(--version "${version}")
|
||||
fi
|
||||
cargo install "${cargo_args[@]}" "${tool}"
|
||||
done
|
||||
if [[ -n "${token}" ]]; then
|
||||
GITHUB_TOKEN="${token}" \
|
||||
cargo-binstall binstall "${binstall_args[@]}" "${unsupported_tools[@]}"
|
||||
else
|
||||
cargo-binstall binstall "${binstall_args[@]}" "${unsupported_tools[@]}"
|
||||
fi
|
||||
if [[ -z "${cargo_path}" ]]; then
|
||||
_bin_dir=$(canonicalize_windows_path "${home}/.cargo/bin")
|
||||
|
||||
44
manifests/biome.json
generated
44
manifests/biome.json
generated
@@ -2,13 +2,51 @@
|
||||
"rust_crate": null,
|
||||
"template": null,
|
||||
"latest": {
|
||||
"version": "2.4.15"
|
||||
"version": "2.4.16"
|
||||
},
|
||||
"2": {
|
||||
"version": "2.4.15"
|
||||
"version": "2.4.16"
|
||||
},
|
||||
"2.4": {
|
||||
"version": "2.4.15"
|
||||
"version": "2.4.16"
|
||||
},
|
||||
"2.4.16": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.4.16/biome-linux-x64-musl",
|
||||
"etag": "0x8DEBBF5E5A32262",
|
||||
"hash": "e7102113e10c57772ce969ce088f54ec2cc37331bb4601e5f5369fd94a6fe1d9",
|
||||
"bin": "biome"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.4.16/biome-darwin-x64",
|
||||
"etag": "0x8DEBBF5E52310BC",
|
||||
"hash": "42329e159a2f35b3776a01e7a16a53582d53e126fbc55bfdd5825e873a87b338",
|
||||
"bin": "biome"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.4.16/biome-win32-x64.exe",
|
||||
"etag": "0x8DEBBF5E5B6BB6E",
|
||||
"hash": "1247239dae8f57aafeaeb9914e30b92efcc51c632eee3be4463a95969558f6a3",
|
||||
"bin": "biome.exe"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.4.16/biome-linux-arm64-musl",
|
||||
"etag": "0x8DEBBF5E56DA88F",
|
||||
"hash": "f288ac4e33d35ef08ee333419525df8cf9e74a617447d651a3fad052a9612731",
|
||||
"bin": "biome"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.4.16/biome-darwin-arm64",
|
||||
"etag": "0x8DEBBF5E4F81273",
|
||||
"hash": "8cf9e92a161e26bdbfc0896c208864e1de8b160dfb90f61040609c2743cf433b",
|
||||
"bin": "biome"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/biomejs/biome/releases/download/%40biomejs/biome%402.4.16/biome-win32-arm64.exe",
|
||||
"etag": "0x8DEBBF5E55D1958",
|
||||
"hash": "fd0c02ad8b5bbbdd634b22d154b1076ba27624025b6ad1dd62838a179523e919",
|
||||
"bin": "biome.exe"
|
||||
}
|
||||
},
|
||||
"2.4.15": {
|
||||
"x86_64_linux_musl": {
|
||||
|
||||
22
manifests/cargo-deny.json
generated
22
manifests/cargo-deny.json
generated
@@ -28,6 +28,28 @@
|
||||
"0.19": {
|
||||
"version": "0.19.7"
|
||||
},
|
||||
"0.19.8": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEBC9143658A6A",
|
||||
"hash": "70e769ae3872e34d45132b17040859175e11401dc12dddb0303e0b8c7d088f3f"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEBC9158C150A8",
|
||||
"hash": "dcd997dd8b7039015cd6f72d4feff64a21f5a6ec905e463751df80e70d82886c"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEBC9184A543FA",
|
||||
"hash": "7db40a864ea299304e3a6c1d9f647fa8f554bb0353e181f63955b21c0dc57cd0"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEBC914C73B2AC",
|
||||
"hash": "67ef48056523d27f58a527c5e49172bc24758f7b8147998d47219d45b181c354"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEBC9138285055",
|
||||
"hash": "24bbdbe694f9b0cc00b721d94cbd5a8f967eb9a4d2ee99351aa246a69b33ae4f"
|
||||
}
|
||||
},
|
||||
"0.19.7": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEB7D6F3B4B3A3",
|
||||
|
||||
39
manifests/cargo-nextest.json
generated
39
manifests/cargo-nextest.json
generated
@@ -27,10 +27,45 @@
|
||||
}
|
||||
},
|
||||
"latest": {
|
||||
"version": "0.9.136"
|
||||
"version": "0.9.137"
|
||||
},
|
||||
"0.9": {
|
||||
"version": "0.9.136"
|
||||
"version": "0.9.137"
|
||||
},
|
||||
"0.9.137": {
|
||||
"previous_stable_version": "0.9.136",
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DEBB6A74590433",
|
||||
"hash": "38fd6275e111b200bbbed1bd2ae91cbb0d7edd28504879875cff2b3d96f3f311"
|
||||
},
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEBB6AC178847F",
|
||||
"hash": "d5a7d2e76a19b65006939e296eb19d776f820cfaa19514c01cf70a5185a885b8"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEBB6AF4518457",
|
||||
"hash": "94e89c20b233c29c042683e885131d76abf95e795c355a4fe7d64d4b128b90be"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEBB6B1E0B53E4",
|
||||
"hash": "f32114ae7c9a1718fc95a6e18afb720c3aadc8510d1e838c2a2b60978c8ba464"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"etag": "0x8DEBB6A9C891E9D",
|
||||
"hash": "8f878903d63a69dd0a8fba65d0dc871043423bd0591076f688023b862d58d1a6"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEBB6A7790E2DF",
|
||||
"hash": "cc8a61beed918e1e76f047243f8bb9fc90bad0e6b74b91b2f58b7397f912495a"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEBB6B7EBCCCDC",
|
||||
"hash": "27f1c452ee96ba852ba94569dc63ba720c1f209e0150967d3503ec7ced17f431"
|
||||
},
|
||||
"riscv64_linux_gnu": {
|
||||
"etag": "0x8DEBB6A923FDF58",
|
||||
"hash": "b1c235ea81560d0f0dee36053369ba6c8eda303183ff8603a9776fd28b946495"
|
||||
}
|
||||
},
|
||||
"0.9.136": {
|
||||
"previous_stable_version": "0.9.135",
|
||||
|
||||
45
manifests/editorconfig-checker.json
generated
45
manifests/editorconfig-checker.json
generated
@@ -2,10 +2,51 @@
|
||||
"rust_crate": null,
|
||||
"template": null,
|
||||
"latest": {
|
||||
"version": "3.6.1"
|
||||
"version": "3.7.0"
|
||||
},
|
||||
"3": {
|
||||
"version": "3.6.1"
|
||||
"version": "3.7.0"
|
||||
},
|
||||
"3.7": {
|
||||
"version": "3.7.0"
|
||||
},
|
||||
"3.7.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/editorconfig-checker/editorconfig-checker/releases/download/v3.7.0/ec-linux-amd64.tar.gz",
|
||||
"etag": "0x8DEBA822CEFEBD7",
|
||||
"hash": "9a0c3a5170bffa24f9e5f0def53d285777b6c5284a95367f40d399d0b76af552",
|
||||
"bin": "bin/ec-linux-amd64"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/editorconfig-checker/editorconfig-checker/releases/download/v3.7.0/ec-darwin-amd64.tar.gz",
|
||||
"etag": "0x8DEBA822CDDD7B8",
|
||||
"hash": "6cd2e4aa2a374d391e3baeaae43fc28906fd15b09490f5669eee206a63eef00a",
|
||||
"bin": "bin/ec-darwin-amd64"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/editorconfig-checker/editorconfig-checker/releases/download/v3.7.0/ec-windows-amd64.zip",
|
||||
"etag": "0x8DEBA822C7D11CB",
|
||||
"hash": "9c6b8a4cd7ccc5826ab96d34c460f37ab18b9cb50607d3ee9eb743fc47335da7",
|
||||
"bin": "bin/ec-windows-amd64.exe"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/editorconfig-checker/editorconfig-checker/releases/download/v3.7.0/ec-linux-arm64.tar.gz",
|
||||
"etag": "0x8DEBA822D52AB64",
|
||||
"hash": "e978f3f0940469989930311af8e101dd9ce8c2ee4da69264f3d76a3787e961ad",
|
||||
"bin": "bin/ec-linux-arm64"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/editorconfig-checker/editorconfig-checker/releases/download/v3.7.0/ec-darwin-arm64.tar.gz",
|
||||
"etag": "0x8DEBA822CD948FC",
|
||||
"hash": "727e6ef506c6fbe7719cc29c69b495715b64514a00059f3f179077bfad0580e5",
|
||||
"bin": "bin/ec-darwin-arm64"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/editorconfig-checker/editorconfig-checker/releases/download/v3.7.0/ec-windows-arm64.zip",
|
||||
"etag": "0x8DEBA822D49DBB7",
|
||||
"hash": "249759725d0b7d687cbb87b2eab14147617e1e5e0a6390f6cc12b8c57da98dce",
|
||||
"bin": "bin/ec-windows-arm64.exe"
|
||||
}
|
||||
},
|
||||
"3.6": {
|
||||
"version": "3.6.1"
|
||||
|
||||
26
manifests/gungraun-runner.json
generated
26
manifests/gungraun-runner.json
generated
@@ -23,10 +23,32 @@
|
||||
}
|
||||
},
|
||||
"latest": {
|
||||
"version": "0.19.0"
|
||||
"version": "0.19.1"
|
||||
},
|
||||
"0.19": {
|
||||
"version": "0.19.0"
|
||||
"version": "0.19.1"
|
||||
},
|
||||
"0.19.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEBC4AE0ECBD5A",
|
||||
"hash": "fadef57834f6b7a3514695eed65fce748efeb1e601073b40de3062df02894102"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"etag": "0x8DEBC4AE56BAF89",
|
||||
"hash": "b8142d894bcb5bb66f7113b0b5cef4e861cc10399453312c977f9d564fdd951b"
|
||||
},
|
||||
"powerpc64le_linux_gnu": {
|
||||
"etag": "0x8DEBC4AA0A11589",
|
||||
"hash": "96a3118c55ee7ed60982dd9f3611f930dc3da0b648d6bf8a2c8bffd7da0524e3"
|
||||
},
|
||||
"riscv64_linux_gnu": {
|
||||
"etag": "0x8DEBC4AD908F661",
|
||||
"hash": "00f70a4c20fc820a42a3d3c681169b028474528f324f9ea3bc29cdc5a8584997"
|
||||
},
|
||||
"s390x_linux_gnu": {
|
||||
"etag": "0x8DEBC4B0AA8CF46",
|
||||
"hash": "2a460d5cf58e8332c4b5876f3c26203dfee898bd0411db9e9590bd03eb16c227"
|
||||
}
|
||||
},
|
||||
"0.19.0": {
|
||||
"x86_64_linux_musl": {
|
||||
|
||||
37
manifests/knope.json
generated
37
manifests/knope.json
generated
@@ -2,7 +2,42 @@
|
||||
"rust_crate": "knope",
|
||||
"template": null,
|
||||
"latest": {
|
||||
"version": "0.22.4"
|
||||
"version": "0.23.0"
|
||||
},
|
||||
"0.23": {
|
||||
"version": "0.23.0"
|
||||
},
|
||||
"0.23.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/knope-dev/knope/releases/download/knope/v0.23.0/knope-x86_64-unknown-linux-musl.tgz",
|
||||
"etag": "0x8DEB9CB8CCE3489",
|
||||
"hash": "76a970a5e237344abc14be3de37ed50c021b659a9b66b3f54afc77e6d48ac501",
|
||||
"bin": "knope-x86_64-unknown-linux-musl/knope"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/knope-dev/knope/releases/download/knope/v0.23.0/knope-x86_64-apple-darwin.tgz",
|
||||
"etag": "0x8DEB9CB8CCCD686",
|
||||
"hash": "e403b5be532fb77238b9489555bc61ccb36ea4b4c7efc0dde1f5e5290067babe",
|
||||
"bin": "knope-x86_64-apple-darwin/knope"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/knope-dev/knope/releases/download/knope/v0.23.0/knope-x86_64-pc-windows-msvc.tgz",
|
||||
"etag": "0x8DEB9CB8CCC1413",
|
||||
"hash": "7624eaeaf4758bf94729ab2e0bc4ea11e52972eee1bcd581630212eba335fbb0",
|
||||
"bin": "knope-x86_64-pc-windows-msvc/knope.exe"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/knope-dev/knope/releases/download/knope/v0.23.0/knope-aarch64-unknown-linux-musl.tgz",
|
||||
"etag": "0x8DEB9CB8CC8BC73",
|
||||
"hash": "c68758b1c3b007367ea40c22b1b1b052720557215935af09677d1561039698b4",
|
||||
"bin": "knope-aarch64-unknown-linux-musl/knope"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/knope-dev/knope/releases/download/knope/v0.23.0/knope-aarch64-apple-darwin.tgz",
|
||||
"etag": "0x8DEB9CB8CC847CB",
|
||||
"hash": "a6e231cc7f02032c5b49ad14149c7d11fd48f0e244f9fb48d5c4c47ffb0e3863",
|
||||
"bin": "knope-aarch64-apple-darwin/knope"
|
||||
}
|
||||
},
|
||||
"0.22": {
|
||||
"version": "0.22.4"
|
||||
|
||||
32
manifests/mise.json
generated
32
manifests/mise.json
generated
@@ -27,13 +27,39 @@
|
||||
}
|
||||
},
|
||||
"latest": {
|
||||
"version": "2026.5.14"
|
||||
"version": "2026.5.15"
|
||||
},
|
||||
"2026": {
|
||||
"version": "2026.5.14"
|
||||
"version": "2026.5.15"
|
||||
},
|
||||
"2026.5": {
|
||||
"version": "2026.5.14"
|
||||
"version": "2026.5.15"
|
||||
},
|
||||
"2026.5.16": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEBCF3B7A16B80",
|
||||
"hash": "17cd7f5b04c667aba95a56c746bccc369c91f1f6a8da7196f1e74ba59dcf2ad9"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEBCF3BA32EE7D",
|
||||
"hash": "f4a7a6a8d34a8689c62378c1bd13be4f37c7ea399799687c19cf93c2ffca9845"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEBCF3BB5457B3",
|
||||
"hash": "ef58bd006a383545383cd8adb7d67c8edba215570ba737c7aa7ba98b5275b081"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEBCF3B33E45C7",
|
||||
"hash": "6a4d181ec20082e50d3fd30afaa85867b30d1a9edad17072148a4a683b3cd8c5"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEBCF3B91D5F66",
|
||||
"hash": "761bb3a68627685050fd641d3afdc2d2a2df605b734f7a5566a79b5c609c64f0"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEBCF3BB6B485B",
|
||||
"hash": "ea932fa2ecad2324c873385926fe655cf0715a186b6b952dc546799dd1ff7fd4"
|
||||
}
|
||||
},
|
||||
"2026.5.15": {
|
||||
"x86_64_linux_musl": {
|
||||
|
||||
42
manifests/parse-dockerfile.json
generated
42
manifests/parse-dockerfile.json
generated
@@ -30,10 +30,48 @@
|
||||
}
|
||||
},
|
||||
"latest": {
|
||||
"version": "0.1.5"
|
||||
"version": "0.1.6"
|
||||
},
|
||||
"0.1": {
|
||||
"version": "0.1.5"
|
||||
"version": "0.1.6"
|
||||
},
|
||||
"0.1.6": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEB9CD9244F826",
|
||||
"hash": "710e16cc30de60a997233c5ca9cda9ed7b945f13d6588c25dbe9a8a4bc6085a7"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEB9CD8EAF3822",
|
||||
"hash": "6880df1dc4dfb34636961f3b7c2e6713566276cf9e07fb1172f2a41a5849dab1"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEB9CDDB1179DE",
|
||||
"hash": "19e98cdcbb7eb28c1bd50512e2ef5596d8624041ca14b8febb63b4ab98e6c9bf"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEB9CD90318D69",
|
||||
"hash": "8e77ec1ed1324beda9376c629ecede7289f1b16272c70ad5bde676ffdbf203ce"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEB9CD8D22DC09",
|
||||
"hash": "931d37a3c9f0729d4e5d8f633098b0e32987ca798d31743f33bb8b469c61e6df"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEB9CDA4A18843",
|
||||
"hash": "97528a7845bcc581ebcebc55eee147e784d4784a0faeed1546b2ee342d84d02e"
|
||||
},
|
||||
"powerpc64le_linux_musl": {
|
||||
"etag": "0x8DEB9CD8F86F231",
|
||||
"hash": "f02bece07e90c056aecc864a1f934da34e0a77a6034b61c8081ae012e0b32e8a"
|
||||
},
|
||||
"riscv64_linux_musl": {
|
||||
"etag": "0x8DEB9CD9255874E",
|
||||
"hash": "e7ff63e164497017449ac842a622b66e540e6c658df4a384adb05d660220d6b1"
|
||||
},
|
||||
"s390x_linux_gnu": {
|
||||
"etag": "0x8DEB9CD9F7061E4",
|
||||
"hash": "c738e2a37e3c9d9b23e5eb982eb25182b123d8c41111c745fe3cb434aab6215c"
|
||||
}
|
||||
},
|
||||
"0.1.5": {
|
||||
"x86_64_linux_musl": {
|
||||
|
||||
72
manifests/prek.json
generated
72
manifests/prek.json
generated
@@ -39,10 +39,78 @@
|
||||
}
|
||||
},
|
||||
"latest": {
|
||||
"version": "0.4.1"
|
||||
"version": "0.4.3"
|
||||
},
|
||||
"0.4": {
|
||||
"version": "0.4.1"
|
||||
"version": "0.4.3"
|
||||
},
|
||||
"0.4.3": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEBB9EF576B921",
|
||||
"hash": "509193a8cb4a3032dd9f732023466e4c6719cc758cd6f768a7218a702edb08ae"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEBB9EF51530C6",
|
||||
"hash": "c2f1d49b20a2b10a147195d5e33b03ca51430a852ea6cac568853dda5b89fbb8"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEBB9EF532D09C",
|
||||
"hash": "8105cec75f5f60b2b1b499f9e57453dac1be835cf2e67ae141c47d6faa88b84d"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEBB9EF39AE912",
|
||||
"hash": "0a112f72c3e76d4bdea6a5f73788015579766f9a9a5ff827932f7a4685f87eb5"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEBB9EF367DD89",
|
||||
"hash": "80e10ab3961940ef4d5b0cde03ed670f8176dd60729a03e6a7d92ae00700e072"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEBB9EF37A3F5F",
|
||||
"hash": "24498f658617ecc4b17ca1b23065bb7203bb756ecf9e93629c093ec46a40c548"
|
||||
},
|
||||
"riscv64_linux_gnu": {
|
||||
"etag": "0x8DEBB9EF4D12171",
|
||||
"hash": "60f895f3047cadd185eda52e8755d185d1bd05db6c3a2a23e2b27824d6b30ba3"
|
||||
},
|
||||
"s390x_linux_gnu": {
|
||||
"etag": "0x8DEBB9EF4E35C60",
|
||||
"hash": "d4899d63448322f62dc874331cba4c7c0c0e98ce6a57e1d7b5af85b5987ffb42"
|
||||
}
|
||||
},
|
||||
"0.4.2": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEBB05AE51A940",
|
||||
"hash": "8966aac61df423e4188b05dce904982cdb07de57efb0c2bb83057a97ada64549"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEBB05AD7C8449",
|
||||
"hash": "e9784e6d120bd6811afdbb9805b500342e184b72603d7cda06cd222cfd7a6ad6"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEBB05ADCD2FBF",
|
||||
"hash": "6b571c5100ebbaf868dc3c209f39ceb4ec16d6f1f297ee9fbdde013fc8b777f7"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEBB05AB84989C",
|
||||
"hash": "ceb234ca2e65ae3f726a04071778f851aa4fbee1a03f80e3783730a0905937fa"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEBB05AB47AD12",
|
||||
"hash": "9ea984611f3830e86d3f49b289dc34e9f2750009b9a04ee1d21e893b32df5a04"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEBB05AB387BE7",
|
||||
"hash": "b360a06835aa7109030af0b8847f858125a8dece665b79f31bedf3ee03505172"
|
||||
},
|
||||
"riscv64_linux_gnu": {
|
||||
"etag": "0x8DEBB05AD38C295",
|
||||
"hash": "23499c4e7a76062a157eb43ee41e340b93b2e2e572b8d4e9657d35371d1087ed"
|
||||
},
|
||||
"s390x_linux_gnu": {
|
||||
"etag": "0x8DEBB05AD529628",
|
||||
"hash": "fd0fb47d00e404a6942795f98206cdd12496f7dcc16618e4a551615e245f61a4"
|
||||
}
|
||||
},
|
||||
"0.4.1": {
|
||||
"x86_64_linux_musl": {
|
||||
|
||||
6
manifests/rclone.json
generated
6
manifests/rclone.json
generated
@@ -27,13 +27,13 @@
|
||||
}
|
||||
},
|
||||
"latest": {
|
||||
"version": "1.74.1"
|
||||
"version": "1.74.2"
|
||||
},
|
||||
"1": {
|
||||
"version": "1.74.1"
|
||||
"version": "1.74.2"
|
||||
},
|
||||
"1.74": {
|
||||
"version": "1.74.1"
|
||||
"version": "1.74.2"
|
||||
},
|
||||
"1.74.2": {
|
||||
"x86_64_linux_musl": {
|
||||
|
||||
121
manifests/tombi.json
generated
121
manifests/tombi.json
generated
@@ -2,10 +2,127 @@
|
||||
"rust_crate": null,
|
||||
"template": null,
|
||||
"latest": {
|
||||
"version": "0.11.6"
|
||||
"version": "1.1.0"
|
||||
},
|
||||
"1": {
|
||||
"version": "1.1.0"
|
||||
},
|
||||
"1.1": {
|
||||
"version": "1.1.0"
|
||||
},
|
||||
"1.1.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/tombi-toml/tombi/releases/download/v1.1.1/tombi-cli-1.1.1-x86_64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DEBD0871AF7EC7",
|
||||
"hash": "6b01a72fbf67eb158a2efc72f7081756d87e2397054e0faf4de4b36478813342",
|
||||
"bin": "tombi-cli-1.1.1-x86_64-unknown-linux-musl/tombi"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/tombi-toml/tombi/releases/download/v1.1.1/tombi-cli-1.1.1-x86_64-apple-darwin.tar.gz",
|
||||
"etag": "0x8DEBD0870F0D5CF",
|
||||
"hash": "f4c70cfb7b1ada225df2b996ba97820a80dd9704484945f57fc18ad8fa18d9c6",
|
||||
"bin": "tombi-cli-1.1.1-x86_64-apple-darwin/tombi"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/tombi-toml/tombi/releases/download/v1.1.1/tombi-cli-1.1.1-x86_64-pc-windows-msvc.zip",
|
||||
"etag": "0x8DEBD0870E39E3D",
|
||||
"hash": "e899a3ae3a9361456061676b6264a5db0d4bb3e7d45e8890265d0ab5906439d1"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/tombi-toml/tombi/releases/download/v1.1.1/tombi-cli-1.1.1-aarch64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DEBD0870D29A65",
|
||||
"hash": "990aa9d963cb38aaa3cb327cca07420d3af601322eff3a6fe6ab4cdc3acc776a",
|
||||
"bin": "tombi-cli-1.1.1-aarch64-unknown-linux-musl/tombi"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/tombi-toml/tombi/releases/download/v1.1.1/tombi-cli-1.1.1-aarch64-apple-darwin.tar.gz",
|
||||
"etag": "0x8DEBD0870CFB771",
|
||||
"hash": "3e675cbae672e37c9158f2a29cfd03033b912742cde6105cb3cbffd156488fb1",
|
||||
"bin": "tombi-cli-1.1.1-aarch64-apple-darwin/tombi"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/tombi-toml/tombi/releases/download/v1.1.1/tombi-cli-1.1.1-aarch64-pc-windows-msvc.zip",
|
||||
"etag": "0x8DEBD0870DEC1BC",
|
||||
"hash": "73523aea3022e9945b4d74ae26536890f2ecaacaa0b5160e47a22c6bc72c2ae1"
|
||||
}
|
||||
},
|
||||
"1.1.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/tombi-toml/tombi/releases/download/v1.1.0/tombi-cli-1.1.0-x86_64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DEBAB98193E4E2",
|
||||
"hash": "cee1b8edf63d7d49a5b7ed626a84d0a7f7d8ea48f664212da3cad17afeb142aa",
|
||||
"bin": "tombi-cli-1.1.0-x86_64-unknown-linux-musl/tombi"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/tombi-toml/tombi/releases/download/v1.1.0/tombi-cli-1.1.0-x86_64-apple-darwin.tar.gz",
|
||||
"etag": "0x8DEBAB9819A1F7D",
|
||||
"hash": "0180797ef983cc56d33a0d0c22b46d37ba8b2f5718be494556d4cdec0116591f",
|
||||
"bin": "tombi-cli-1.1.0-x86_64-apple-darwin/tombi"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/tombi-toml/tombi/releases/download/v1.1.0/tombi-cli-1.1.0-x86_64-pc-windows-msvc.zip",
|
||||
"etag": "0x8DEBAB9825B0FCC",
|
||||
"hash": "8e1cdcd9d068e2b60c9eb77a5ec35c08787036fab944fee693f4bcd021fda89c"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/tombi-toml/tombi/releases/download/v1.1.0/tombi-cli-1.1.0-aarch64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DEBAB981995CF7",
|
||||
"hash": "06a73665a4ac4f16f93e2ace03584f97cadb9609365339e53db8d35b434df359",
|
||||
"bin": "tombi-cli-1.1.0-aarch64-unknown-linux-musl/tombi"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/tombi-toml/tombi/releases/download/v1.1.0/tombi-cli-1.1.0-aarch64-apple-darwin.tar.gz",
|
||||
"etag": "0x8DEBAB9819E6068",
|
||||
"hash": "9adc2c6ac821c758342c12aba18c394f404035483fd41b46a422da38a70e3ad8",
|
||||
"bin": "tombi-cli-1.1.0-aarch64-apple-darwin/tombi"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/tombi-toml/tombi/releases/download/v1.1.0/tombi-cli-1.1.0-aarch64-pc-windows-msvc.zip",
|
||||
"etag": "0x8DEBAB982378323",
|
||||
"hash": "1f9ef6df3f49a00c370e95f00770ba278a6cb718a56c61a23a970082838fc111"
|
||||
}
|
||||
},
|
||||
"1.0": {
|
||||
"version": "1.0.0"
|
||||
},
|
||||
"1.0.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/tombi-toml/tombi/releases/download/v1.0.0/tombi-cli-1.0.0-x86_64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DEB9F29541ECCB",
|
||||
"hash": "de0efe1ae3816c1ef9e2eb79fad19d9bc1bc8deefcd2b002967770438c23a4d8",
|
||||
"bin": "tombi-cli-1.0.0-x86_64-unknown-linux-musl/tombi"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/tombi-toml/tombi/releases/download/v1.0.0/tombi-cli-1.0.0-x86_64-apple-darwin.tar.gz",
|
||||
"etag": "0x8DEB9F294B9A71B",
|
||||
"hash": "45a597f0e555995daf5ade2ba619ccdfd8c6d1b8aa56e9d4e808faafa13e5e72",
|
||||
"bin": "tombi-cli-1.0.0-x86_64-apple-darwin/tombi"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/tombi-toml/tombi/releases/download/v1.0.0/tombi-cli-1.0.0-x86_64-pc-windows-msvc.zip",
|
||||
"etag": "0x8DEB9F294C7EEE7",
|
||||
"hash": "945f710543acdec1b3973680f32fb3b9eab32f388cdef59ad974624bd8f2a268"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/tombi-toml/tombi/releases/download/v1.0.0/tombi-cli-1.0.0-aarch64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DEB9F295A3007F",
|
||||
"hash": "82f900ad8c55352d1568e427d852ed47e51fed4ce4351c881aa87f8da1283bbc",
|
||||
"bin": "tombi-cli-1.0.0-aarch64-unknown-linux-musl/tombi"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/tombi-toml/tombi/releases/download/v1.0.0/tombi-cli-1.0.0-aarch64-apple-darwin.tar.gz",
|
||||
"etag": "0x8DEB9F294C0A417",
|
||||
"hash": "3211dc10a0b91ec172d2214823de93d19f2fe7ac1be336a81899fbbc2b6c80ff",
|
||||
"bin": "tombi-cli-1.0.0-aarch64-apple-darwin/tombi"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/tombi-toml/tombi/releases/download/v1.0.0/tombi-cli-1.0.0-aarch64-pc-windows-msvc.zip",
|
||||
"etag": "0x8DEB9F294C669FB",
|
||||
"hash": "9567264b567821210eee4ae4932cafd6622dadcc92e90cbed37823a53ed49f79"
|
||||
}
|
||||
},
|
||||
"0.11": {
|
||||
"version": "0.11.6"
|
||||
"version": "0.11.7"
|
||||
},
|
||||
"0.11.7": {
|
||||
"x86_64_linux_musl": {
|
||||
|
||||
28
manifests/typos.json
generated
28
manifests/typos.json
generated
@@ -21,13 +21,35 @@
|
||||
}
|
||||
},
|
||||
"latest": {
|
||||
"version": "1.46.2"
|
||||
"version": "1.46.3"
|
||||
},
|
||||
"1": {
|
||||
"version": "1.46.2"
|
||||
"version": "1.46.3"
|
||||
},
|
||||
"1.47.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEBD1EBECB010B",
|
||||
"hash": "6f8a935cea6c60b060082b862a7e777bfd92d939a4fd4194d8085b086dfe24e4"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEBD1EE657F875",
|
||||
"hash": "aae88e65ed25c091dd4c4a9767b2d36f7913d08f76b38c1bb8ccd189284870d7"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEBD1F07F6C21B",
|
||||
"hash": "8773b1b3029b1e149b7bd676785b065b236173a7509bc9ab19fa64e638ae989a"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEBD1ECC355909",
|
||||
"hash": "0349ec65605216136b57c3ea6f1a02034e7e8bc128788474b635396997015d54"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEBD1EF24FEB12",
|
||||
"hash": "9baa4690960c82cdc3d28bc4744c6ca84df24d99cc1f709869cc14fa8717601a"
|
||||
}
|
||||
},
|
||||
"1.46": {
|
||||
"version": "1.46.2"
|
||||
"version": "1.46.3"
|
||||
},
|
||||
"1.46.3": {
|
||||
"x86_64_linux_musl": {
|
||||
|
||||
38
manifests/uv.json
generated
38
manifests/uv.json
generated
@@ -73,6 +73,44 @@
|
||||
"0.11": {
|
||||
"version": "0.11.15"
|
||||
},
|
||||
"0.11.17": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEBCF970BB17C0",
|
||||
"hash": "4231a429d4e0f7c1937d8916658c08a7706cd7872afebeb87203a18c2e0dc28e"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEBCF96FF5988D",
|
||||
"hash": "6c66e41eaf4d15abeda58d3f268161b6e3f742d98390341b174a7cfc1b48841d"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEBCF970662B50",
|
||||
"hash": "35fc29e03e62f3cda769bc12773f3cb70ce305d0d36c0d8bd0c117dd0b3fcd14"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEBCF96D145322",
|
||||
"hash": "9e5eaf16ffad968fc689f18c2733ace914ed417d4e5572e92d807fd51a90228c"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEBCF96C81DF73",
|
||||
"hash": "2a162f6b90ff3691a2f9cae1622e066a3ce592e110f66670cdcc841324b28226"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEBCF96CB2A3B4",
|
||||
"hash": "f4463aa9671c6d153d32f2a9b272389675a711a9bca806c4ab4a3c7559b045c2"
|
||||
},
|
||||
"powerpc64le_linux_gnu": {
|
||||
"etag": "0x8DEBCF96F13D777",
|
||||
"hash": "714c7b292c805231edbfc77ca14b29e6e469342236ef1cfb58fe7d6f8fed48a4"
|
||||
},
|
||||
"riscv64_linux_gnu": {
|
||||
"etag": "0x8DEBCF96F80502D",
|
||||
"hash": "f8bece740520b35f69c82653da77912b38a29a5634a6e0ce7d83122a485c6a6f"
|
||||
},
|
||||
"s390x_linux_gnu": {
|
||||
"etag": "0x8DEBCF96FC71BB4",
|
||||
"hash": "10ec2070644dda19ab9c8dcc3d6f3bbf4b09ad6665b8a8be067d7fdb5a58b56c"
|
||||
}
|
||||
},
|
||||
"0.11.16": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEB785E9C1EC4F",
|
||||
|
||||
134
manifests/vacuum.json
generated
134
manifests/vacuum.json
generated
@@ -21,10 +21,140 @@
|
||||
}
|
||||
},
|
||||
"latest": {
|
||||
"version": "0.26.6"
|
||||
"version": "0.26.8"
|
||||
},
|
||||
"0.27.2": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEBCE644279847",
|
||||
"hash": "48513c009f1d5843d77f079d24a473b993b452a9e52d451616a423b36dbb3e92"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEBCE642F9465F",
|
||||
"hash": "ca33c783ac76fdb13ca8e27db5b3fe852d760d954f34b3805a68c652566c7d69"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEBCE643CC23A3",
|
||||
"hash": "0566a77a857120b07d9c1bc0f718c0371b089e0fa51def95caf192604837c3ab"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEBCE644078A28",
|
||||
"hash": "772f1040b59d6d365709c9aab90270dd0078ca9f2a1ad918474e8b5767df804b"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEBCE643197B56",
|
||||
"hash": "051251dadb0bfa5c68f063067273a42b786a9d9d4c783649e2a60655854a4417"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEBCE642D28915",
|
||||
"hash": "9e05de80bdf9ee3d5a0cb881dd1671717c7f8a6fc50c45bdb96e8fc2bcddf555"
|
||||
}
|
||||
},
|
||||
"0.27.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEBCD53C0997C6",
|
||||
"hash": "738c71855eba55fa10bde62798a1a0bd4004eabec5b3f857a6d322b588534203"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEBCD53AC93195",
|
||||
"hash": "41bb237a8765c49cd8a3aaafc3458a525d969ac6c7572b459ca9ee31be5c6241"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEBCD53C46F7F1",
|
||||
"hash": "82389b18ebb3a67b4401bf8c594422fd5d7c8f2972c888815199455ad4a38ff2"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEBCD53C1329E7",
|
||||
"hash": "f46a187eb83fc1bba34904d9f9fcbecc34100346231faecd965ab317a5b8cc8e"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEBCD53AC0FD76",
|
||||
"hash": "8235cf38a28010dc4cdbc5bcfc617b4b9f5a498ce05c8f5f3dfee8c9e2dc58eb"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEBCD53C2CAFB0",
|
||||
"hash": "e616ca57d1e29fa6bbe9ff014f8d4f8b7674b7932a816ba475a68295db3fbd33"
|
||||
}
|
||||
},
|
||||
"0.27.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEBC985A78A3AD",
|
||||
"hash": "904c1187f9c1530a08250a4eb147ef0f78dd4a501e58bfd6330c6a4b2af00f06"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEBC9859848012",
|
||||
"hash": "eb21f091626d12a162532462ff4c3decf098958edb9e20036b407abccc30c71d"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEBC985A760E7B",
|
||||
"hash": "b07f642723b73ecdeaae9d4e951d3f667569a3fc7cf30aeed9f32fcf54743dac"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEBC985A887073",
|
||||
"hash": "a042fba6852813a5e7a1edd652f4d55b218a67249933ebe91b3cdbf714aa0727"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEBC98598935BC",
|
||||
"hash": "684aeaeff2e1cb0c771e76448d183637529c1821162eb651a940274211da03e2"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEBC98597AC6F8",
|
||||
"hash": "d60003d000f9c5c981489d0fa45eccd0f65d846ffafe61b2070d902359640a3c"
|
||||
}
|
||||
},
|
||||
"0.26": {
|
||||
"version": "0.26.6"
|
||||
"version": "0.26.8"
|
||||
},
|
||||
"0.26.8": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEBB359470E9D7",
|
||||
"hash": "a7e9229391823d8535c76a0e9c9c618beb9824167eb454f61c60a14d75a2e0ed"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEBB359568B26D",
|
||||
"hash": "8b7763c27f074785ed1fbeb0cfb72ec36ea9b09a44ee9948784d814c12c34136"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEBB35945E1340",
|
||||
"hash": "1762aac1041e1a69cb9a302664d661885637a69f5a0a03b338979ecb41ccd8ae"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEBB35944DD1D1",
|
||||
"hash": "5c61285318aaa9a99c05b4be6637b2d0f4511d4c7569ce76b5cf2e22bf65d1b7"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEBB3595448A2F",
|
||||
"hash": "1c434027b1affc9e055c55c7498e25d70d0aea4c30fb9fec2cb5b4e875f3bb87"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEBB35952F1E68",
|
||||
"hash": "8f2b55d085fa7b16efda615257af1bdcc87ff601b1141d16c4184a6f69bdccc8"
|
||||
}
|
||||
},
|
||||
"0.26.7": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DEBA6C9FFA462C",
|
||||
"hash": "05ba652d7c41c1dc30935bf1e1b5342494c39c69adcbdf9f2bfa0de040c7f1f9"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEBA6C9F4F5CBD",
|
||||
"hash": "f54bea64b6667a282ccc796eacccefab062ba9728f1520c226f8ee0bbe9a3820"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEBA6CA004E89D",
|
||||
"hash": "307581abd6758ce52316141c24e3658b9e5d70832be6183eca467c5eaf8b7f4e"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DEBA6CA02BA618",
|
||||
"hash": "3c6ebbb2845f7573ee957fc339038dab851deb1d8dba3511c80b02e5f00989db"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEBA6C9F515656",
|
||||
"hash": "a631b8c23d83437b1d9cd2b6bed1e6d22f339775ac2b823abeb7630190dce7a8"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DEBA6C9F4BB75F",
|
||||
"hash": "d374f0a4a3cdf8e62b4fe7c8768d6aacb3c96c8276f8ec9fd985ae931e1214c4"
|
||||
}
|
||||
},
|
||||
"0.26.6": {
|
||||
"x86_64_linux_musl": {
|
||||
|
||||
22
manifests/wasm-tools.json
generated
22
manifests/wasm-tools.json
generated
@@ -28,6 +28,28 @@
|
||||
"1": {
|
||||
"version": "1.250.0"
|
||||
},
|
||||
"1.251.0": {
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DEBD0A31291B97",
|
||||
"hash": "08d523676ec71d9afbae05aa4255041ce91bf2d325d87b7e722d190d558be689"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DEBD0A313A1F77",
|
||||
"hash": "a0684bfeb104450bec824b9364bbc16aa8a5e6dfe7319024d0990b0d96bc8904"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DEBD0A314B97FB",
|
||||
"hash": "3961d881285cad7aaa58e49e8c12667045768ac901cd882dc8311a6c92e634a3"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"etag": "0x8DEBD0A309D309E",
|
||||
"hash": "9d5cbab8810ffa43b1ad4c57efdd0092c5be6e905d3bd330d7daba5ad7aaa31d"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DEBD0A30AE5B57",
|
||||
"hash": "ed0fdbdaa80a5c7ef434ac583e1d8df0b8e45d718b08edf28ec27a74e4029897"
|
||||
}
|
||||
},
|
||||
"1.250": {
|
||||
"version": "1.250.0"
|
||||
},
|
||||
|
||||
@@ -129,7 +129,7 @@ case "$(uname -s)" in
|
||||
Darwin)
|
||||
host_os=macos
|
||||
if [[ "${runner}" == 'macos-15-intel' ]]; then
|
||||
incompat_tools+=(release-plz) # no prebuilt binary
|
||||
incompat_tools+=(martin release-plz) # no prebuilt binary
|
||||
fi
|
||||
;;
|
||||
MINGW* | MSYS* | CYGWIN* | Windows_NT) host_os=windows ;;
|
||||
|
||||
@@ -37,7 +37,7 @@ image='ghcr.io/taiki-e/tidy'
|
||||
if [[ -n "${TIDY_DEV:-}" ]]; then
|
||||
image+=':latest'
|
||||
else
|
||||
image+='@sha256:1d3a5d57c486cbac02ef3d8ee29bb0768ebd1fbffef61a61d282215464e2551d'
|
||||
image+='@sha256:151cd5c4f7c88bd21322c7dab255d60e699ffe4d4903e4e712429952537df6cf'
|
||||
fi
|
||||
user="$(id -u):$(id -g)"
|
||||
workdir="${PWD}"
|
||||
|
||||
Reference in New Issue
Block a user