Compare commits

...

12 Commits

Author SHA1 Message Date
Taiki Endo
3522286d40 Release 2.66.1 2026-01-11 19:50:31 +09:00
Taiki Endo
0ed1c967ed Update changelog 2026-01-11 19:50:20 +09:00
Taiki Endo
e69513dca4 Update tombi@latest to 0.7.18 2026-01-11 15:19:20 +09:00
Taiki Endo
4c5e3dc538 Update ubi@latest to 0.9.0 2026-01-11 14:15:27 +09:00
Taiki Endo
e2cc276530 Update tombi@latest to 0.7.17 2026-01-11 00:15:52 +09:00
Taiki Endo
8fb4e4b842 Update .deny.toml 2026-01-10 21:46:54 +09:00
Taiki Endo
83961fc0a2 Release 2.66.0 2026-01-10 21:46:02 +09:00
Taiki Endo
c761556c39 Update changelog 2026-01-10 21:20:25 +09:00
Taiki Endo
f19ed92a93 Workaround MSYS2 bash issue
1d834de755
2026-01-10 21:19:19 +09:00
Taiki Endo
e53d9e37e3 docs: Clarify "tool is supported" doesn't mean "tool is trusted or reviewed by maintainer" 2026-01-10 21:14:55 +09:00
Taiki Endo
f957bde7f4 Update mdbook-mermaid-ssr@latest to 0.3.0 2026-01-10 21:00:51 +09:00
Frank Elsinga
66210e3d43 Add mdbook-mermaid-ssr (#1400) 2026-01-10 20:50:10 +09:00
8 changed files with 224 additions and 8 deletions

View File

@@ -1,6 +1,9 @@
# https://embarkstudios.github.io/cargo-deny/checks/advisories/cfg.html
[advisories]
unused-ignored-advisory = "deny"
yanked = "deny"
unmaintained = "none"
unsound = "all"
git-fetch-with-cli = true
ignore = [
]
@@ -28,6 +31,7 @@ build.bypass = [
# https://embarkstudios.github.io/cargo-deny/checks/licenses/cfg.html
[licenses]
unused-allowed-license = "deny"
unused-license-exception = "deny"
private.ignore = true
allow = [
"Apache-2.0",
@@ -37,6 +41,7 @@ allow = [
# https://embarkstudios.github.io/cargo-deny/checks/sources/cfg.html
[sources]
unused-allowed-source = "deny"
unknown-registry = "deny"
unknown-git = "deny"
allow-git = [

View File

@@ -10,6 +10,20 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com
## [Unreleased]
## [2.66.1] - 2026-01-11
- Update `tombi@latest` to 0.7.18.
- Update `ubi@latest` to 0.9.0.
## [2.66.0] - 2026-01-10
- Support `mdbook-mermaid-ssr`. ([#1400](https://github.com/taiki-e/install-action/pull/1400), thanks @CommanderStorm)
- Improve support for Windows with MSYS2 bash.
- Documentation improvements.
## [2.65.16] - 2026-01-10
- Update `zola@latest` to 0.22.0.
@@ -5309,7 +5323,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.65.16...HEAD
[Unreleased]: https://github.com/taiki-e/install-action/compare/v2.66.1...HEAD
[2.66.1]: https://github.com/taiki-e/install-action/compare/v2.66.0...v2.66.1
[2.66.0]: https://github.com/taiki-e/install-action/compare/v2.65.16...v2.66.0
[2.65.16]: https://github.com/taiki-e/install-action/compare/v2.65.15...v2.65.16
[2.65.15]: https://github.com/taiki-e/install-action/compare/v2.65.14...v2.65.15
[2.65.14]: https://github.com/taiki-e/install-action/compare/v2.65.13...v2.65.14

View File

@@ -9,6 +9,9 @@ See the [Supported tools section in README.md](README.md#supported-tools) for ho
> If `$CARGO_HOME/bin` is not available, Rust-related binaries will be installed to `$HOME/.cargo/bin`.<br>
> If `$HOME/.cargo/bin` is not available, Rust-related binaries will be installed to `$HOME/.install-action/bin`.<br>
> [!WARNING]
> Please note that the fact that a specific tool is listed here does **NOT** mean that the maintainer trusts the tool for safety or has reviewed its code.
| Name | Where binaries will be installed | Where will it be installed from | Supported platform | License |
| ---- | -------------------------------- | ------------------------------- | ------------------ | ------- |
| [**biome**](https://biomejs.dev) | `$HOME/.install-action/bin` | [GitHub Releases](https://github.com/biomejs/biome/releases) | Linux, macOS, Windows | [Apache-2.0](https://github.com/biomejs/biome/blob/main/LICENSE-APACHE) OR [MIT](https://github.com/biomejs/biome/blob/main/LICENSE-MIT) |
@@ -59,6 +62,7 @@ See the [Supported tools section in README.md](README.md#supported-tools) for ho
| [**mdbook-alerts**](https://github.com/lambdalisue/rs-mdbook-alerts) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/lambdalisue/rs-mdbook-alerts/releases) | Linux, macOS, Windows | [MIT](https://github.com/lambdalisue/rs-mdbook-alerts/blob/main/LICENSE) |
| [**mdbook-linkcheck**](https://github.com/Michael-F-Bryan/mdbook-linkcheck) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/Michael-F-Bryan/mdbook-linkcheck/releases) | Linux, macOS, Windows | [MIT](https://github.com/Michael-F-Bryan/mdbook-linkcheck/blob/master/LICENSE) |
| [**mdbook-mermaid**](https://github.com/badboy/mdbook-mermaid) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/badboy/mdbook-mermaid/releases) | Linux, macOS, Windows | [MPL-2.0](https://github.com/badboy/mdbook-mermaid/blob/main/LICENSE) |
| [**mdbook-mermaid-ssr**](https://github.com/CommanderStorm/mdbook-mermaid-ssr) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/CommanderStorm/mdbook-mermaid-ssr/releases) | Linux, macOS, Windows | [MPL-2.0](https://github.com/CommanderStorm/mdbook-mermaid-ssr/blob/main/LICENSE) |
| [**mise**](https://github.com/jdx/mise) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/jdx/mise/releases) | Linux, macOS, Windows | [MIT](https://github.com/jdx/mise/blob/main/LICENSE) |
| [**osv-scanner**](https://github.com/google/osv-scanner) | `$HOME/.install-action/bin` | [GitHub Releases](https://github.com/google/osv-scanner/releases) | Linux, macOS, Windows | [Apache-2.0](https://github.com/google/osv-scanner/blob/main/LICENSE) |
| [**parse-changelog**](https://github.com/taiki-e/parse-changelog) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/taiki-e/parse-changelog/releases) | Linux, macOS, Windows | [Apache-2.0](https://github.com/taiki-e/parse-changelog/blob/main/LICENSE-APACHE) OR [MIT](https://github.com/taiki-e/parse-changelog/blob/main/LICENSE-MIT) |

View File

@@ -654,10 +654,10 @@ case "${host_os}" in
jq() { "${install_action_dir}/jq/bin/jq.exe" -b "$@"; }
elif type -P jq >/dev/null; then
# https://github.com/jqlang/jq/issues/1854
_tmp=$(jq -r .a <<<'{}')
if [[ "${_tmp}" != "null" ]]; then
_tmp=$(jq -b -r .a 2>/dev/null <<<'{}' || true)
if [[ "${_tmp}" == "null" ]]; then
_tmp=$(jq -r .a <<<'{}' | wc -c)
if [[ "${_tmp}" != 5 ]]; then
_tmp=$({ jq -b -r .a 2>/dev/null <<<'{}' || true; } | wc -c)
if [[ "${_tmp}" == 5 ]]; then
jq() { command jq -b "$@"; }
else
jq() { command jq "$@" | tr -d '\r'; }

79
manifests/mdbook-mermaid-ssr.json generated Normal file
View File

@@ -0,0 +1,79 @@
{
"rust_crate": "mdbook-mermaid-ssr",
"template": {
"x86_64_linux_musl": {
"url": "https://github.com/CommanderStorm/mdbook-mermaid-ssr/releases/download/v${version}/mdbook-mermaid-ssr-x86_64-unknown-linux-musl.tar.gz",
"bin": "mdbook-mermaid-ssr"
},
"x86_64_windows": {
"url": "https://github.com/CommanderStorm/mdbook-mermaid-ssr/releases/download/v${version}/mdbook-mermaid-ssr-x86_64-pc-windows-msvc.zip",
"bin": "mdbook-mermaid-ssr.exe"
},
"aarch64_linux_musl": {
"url": "https://github.com/CommanderStorm/mdbook-mermaid-ssr/releases/download/v${version}/mdbook-mermaid-ssr-aarch64-unknown-linux-musl.tar.gz",
"bin": "mdbook-mermaid-ssr"
},
"aarch64_macos": {
"url": "https://github.com/CommanderStorm/mdbook-mermaid-ssr/releases/download/v${version}/mdbook-mermaid-ssr-aarch64-apple-darwin.tar.gz",
"bin": "mdbook-mermaid-ssr"
},
"aarch64_windows": {
"url": "https://github.com/CommanderStorm/mdbook-mermaid-ssr/releases/download/v${version}/mdbook-mermaid-ssr-aarch64-pc-windows-msvc.zip",
"bin": "mdbook-mermaid-ssr.exe"
}
},
"license_markdown": "[MPL-2.0](https://github.com/CommanderStorm/mdbook-mermaid-ssr/blob/main/LICENSE)",
"latest": {
"version": "0.3.0"
},
"0.3": {
"version": "0.3.0"
},
"0.3.0": {
"x86_64_linux_musl": {
"etag": "0x8DE499CAE22BD7D",
"checksum": "9e90f0bb9d7f95c6f8f52c2f094e2507d6bcaab07cd171595dabb1a155186c98"
},
"x86_64_windows": {
"etag": "0x8DE499CF3D3B677",
"checksum": "686a4e7355a46d130a04f0e2dfc87412d65905ac29e75a8e90090bd99b10b7ea"
},
"aarch64_linux_musl": {
"etag": "0x8DE499CB5607A8C",
"checksum": "7b455fb9ceb687413b97a9d1f58afd8caa9347f75bd1f7189904e8c94fbe05f0"
},
"aarch64_macos": {
"etag": "0x8DE499C9A506DE4",
"checksum": "1eb698907586a92ec42a85b457c5c45314b9b53df679ed7ccfe9dea4ad7e0851"
},
"aarch64_windows": {
"etag": "0x8DE499D08F8315D",
"checksum": "2973c1e8f202c63f6e3262bd1874243bf1d48427ef4dd7356666b447e0dda5b4"
}
},
"0.2": {
"version": "0.2.0"
},
"0.2.0": {
"x86_64_linux_musl": {
"etag": "0x8DE48C025DD384B",
"checksum": "5a63b1852b504047d9cc44021decf31a09b1950bc48d26cd443c71793c547cb7"
},
"x86_64_windows": {
"etag": "0x8DE48C071468E35",
"checksum": "0e1c04cef263df9b8814c53764b1a849050dce086ab5a9ac643b49532c7f1c76"
},
"aarch64_linux_musl": {
"etag": "0x8DE48C0334B7A05",
"checksum": "8e8c69c7a9d0cde9f57ecdd832fac34ea80e29b47c3489164cede558cd4be321"
},
"aarch64_macos": {
"etag": "0x8DE48C028CDD50C",
"checksum": "6c572938ceef41fc702b9038b757aebe3e2d44280167bf3528da94847100a297"
},
"aarch64_windows": {
"etag": "0x8DE48C076F07D91",
"checksum": "0cb33f7d3836dc0edf9453adc79d9d11f392feb3899a7fe3d618eb6769081bc5"
}
}
}

56
manifests/tombi.json generated
View File

@@ -22,10 +22,62 @@
},
"license_markdown": "[MIT](https://github.com/tombi-toml/tombi/blob/main/LICENSE)",
"latest": {
"version": "0.7.16"
"version": "0.7.18"
},
"0.7": {
"version": "0.7.16"
"version": "0.7.18"
},
"0.7.18": {
"x86_64_linux_musl": {
"etag": "0x8DE50D348B7380E",
"checksum": "87811d8b1ec48b7fc8fb873f9c50b97b958cb5ecd9fcf9485d34924aaee5d6b3"
},
"x86_64_macos": {
"etag": "0x8DE50D348B5B32C",
"checksum": "ade10a7009c34023ae96a69b5672984e9d210cc720b157a3835b0d46ab59cd0f"
},
"x86_64_windows": {
"etag": "0x8DE50D348D3C7A4",
"checksum": "ac0741aa3472311c6cc2720c6588bf34074455052270a825469357565c87db51"
},
"aarch64_linux_musl": {
"etag": "0x8DE50D348B1BFFD",
"checksum": "5f7bf9ec6a0fbc6cfcdaf4029631721075ad291b13c4f702a5c99a0f832b9e6b"
},
"aarch64_macos": {
"etag": "0x8DE50D349343F9A",
"checksum": "448ce1a834b0c9e1db792c9e553098464f8b04155599750b5fbf7efd895e3942"
},
"aarch64_windows": {
"etag": "0x8DE50D348B627D4",
"checksum": "3e33ffaea78f2b1d0bed50b63de14576bd091230c11bf9cb29fcee8b9e6230a2"
}
},
"0.7.17": {
"x86_64_linux_musl": {
"etag": "0x8DE50549616A04A",
"checksum": "12f07b6322a51b7b3f674f51b0bdd3071d4b93beb2f69a870b1ea21d454f1b9b"
},
"x86_64_macos": {
"etag": "0x8DE5054961E869C",
"checksum": "cca02eb4734ed61b459f3d1c903ad9b3e241e87905f16b54e2b0d620f909ab0b"
},
"x86_64_windows": {
"etag": "0x8DE505495B20E28",
"checksum": "00b50a503fb800aa14d5efb02d32a2cb6210f290795e7cd0f546caa9567ee9dd"
},
"aarch64_linux_musl": {
"etag": "0x8DE5054959F5E73",
"checksum": "7339ede4263c9647753f5c86c9d4167ff2defdd9e97cc8c614935ae8b9bb46cb"
},
"aarch64_macos": {
"etag": "0x8DE505495A8F0AA",
"checksum": "743441452d3e859428f05a80195c2d07b7eba29e6c6528564e3b52ebd0709cbb"
},
"aarch64_windows": {
"etag": "0x8DE505495BD99DB",
"checksum": "4669ec2e659d5b485f6bb16b29d676f91e03b120e044987cad1eac0e42c6ab0b"
}
},
"0.7.16": {
"x86_64_linux_musl": {

43
manifests/ubi.json generated
View File

@@ -40,7 +40,48 @@
},
"license_markdown": "[MIT](https://github.com/houseabsolute/ubi/blob/master/LICENSE-MIT) OR [Apache-2.0](https://github.com/houseabsolute/ubi/blob/master/LICENSE-APACHE)",
"latest": {
"version": "0.8.4"
"version": "0.9.0"
},
"0.9": {
"version": "0.9.0"
},
"0.9.0": {
"x86_64_linux_musl": {
"etag": "0x8DE50C57F71844D",
"checksum": "c9de06eccc1d6c4be1748d3000cc22c88932d834732b3cfbaee4b485e1fb0712"
},
"x86_64_macos": {
"etag": "0x8DE50C5B4A61A0D",
"checksum": "ed0398b2ce51233e4fad73a2b0e77601578b2b3a2d3d2ec9b3834e0941a7e516"
},
"x86_64_windows": {
"etag": "0x8DE50C5A472ABA3",
"checksum": "071209bfd2beb0f6eeb85f46f26a24dc71cf5b239a20be4f8d6d921e65e41f00"
},
"aarch64_linux_musl": {
"etag": "0x8DE50C56378C04D",
"checksum": "386879655eb3321843a6c0c53672bd3c39ef12606515bf7257741f9d0cb8b0ca"
},
"aarch64_macos": {
"etag": "0x8DE50C594DEC0F6",
"checksum": "71778c8593a74889deab3224261b2abd662652fd0363ba8c89ec0f68bfb43e4c"
},
"aarch64_windows": {
"etag": "0x8DE50C57067B420",
"checksum": "47c8b3d95f57842c58c7aa594322d09361f1bb722700e89fb9a55d9fab0b7f0f"
},
"powerpc64le_linux_gnu": {
"etag": "0x8DE50C582622155",
"checksum": "9e316f7a6df22cba067cf8c4b8034d3911916a42d5698ef11664f107f4279c65"
},
"riscv64_linux_gnu": {
"etag": "0x8DE50C561CD6624",
"checksum": "91944922bd0d1dcbe66154aee5d98b25c7b2d6182670aa2af1ef4d0272d911d6"
},
"s390x_linux_gnu": {
"etag": "0x8DE50C57D9199BE",
"checksum": "8f28aefb032c6052cbf541107ae53164f3158ee16fff12dcbfa7d6fba32d7bcb"
}
},
"0.8": {
"version": "0.8.4"

View File

@@ -0,0 +1,19 @@
{
"repository": "https://github.com/CommanderStorm/mdbook-mermaid-ssr",
"tag_prefix": "v",
"rust_crate": "${package}",
"asset_name": "${package}-${rust_target}.tar.gz",
"bin": "${package}${exe}",
"version_range": ">= 0.2.0",
"platform": {
"x86_64_linux_musl": {},
"x86_64_windows": {
"asset_name": "${package}-${rust_target}.zip"
},
"aarch64_linux_musl": {},
"aarch64_macos": {},
"aarch64_windows": {
"asset_name": "${package}-${rust_target}.zip"
}
}
}