mirror of
https://github.com/taiki-e/install-action.git
synced 2026-05-03 11:40:35 +00:00
Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1623b01885 | ||
|
|
7f54b6535b | ||
|
|
d585fd3624 | ||
|
|
b4662e017d | ||
|
|
93909e619a | ||
|
|
d188da0a65 | ||
|
|
2abf6a9d2f | ||
|
|
53a36e2933 |
17
CHANGELOG.md
17
CHANGELOG.md
@@ -10,6 +10,18 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [2.56.23] - 2025-07-24
|
||||
|
||||
- Update `release-plz@latest` to 0.3.139.
|
||||
|
||||
## [2.56.22] - 2025-07-24
|
||||
|
||||
- Update `wasmtime@latest` to 35.0.0.
|
||||
|
||||
## [2.56.21] - 2025-07-22
|
||||
|
||||
- Improve error message for unsupported host architectures.
|
||||
|
||||
## [2.56.20] - 2025-07-22
|
||||
|
||||
- Update `syft@latest` to 1.29.0.
|
||||
@@ -4178,7 +4190,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.56.20...HEAD
|
||||
[Unreleased]: https://github.com/taiki-e/install-action/compare/v2.56.23...HEAD
|
||||
[2.56.23]: https://github.com/taiki-e/install-action/compare/v2.56.22...v2.56.23
|
||||
[2.56.22]: https://github.com/taiki-e/install-action/compare/v2.56.21...v2.56.22
|
||||
[2.56.21]: https://github.com/taiki-e/install-action/compare/v2.56.20...v2.56.21
|
||||
[2.56.20]: https://github.com/taiki-e/install-action/compare/v2.56.19...v2.56.20
|
||||
[2.56.19]: https://github.com/taiki-e/install-action/compare/v2.56.18...v2.56.19
|
||||
[2.56.18]: https://github.com/taiki-e/install-action/compare/v2.56.17...v2.56.18
|
||||
|
||||
5
main.sh
5
main.sh
@@ -533,6 +533,11 @@ case "$(uname -m)" in
|
||||
# https://github.com/actions/runner/issues/688
|
||||
bail "32-bit Arm runner is not supported yet by this action; if you need support for this platform, please submit an issue at <https://github.com/taiki-e/install-action>"
|
||||
;;
|
||||
loongarch64 | mips | mips64 | ppc | ppc64 | ppc64le | riscv64 | s390x | sun4v)
|
||||
# Very few tools provide prebuilt binaries for these.
|
||||
# TODO: fallback to `cargo install`? (binstall fallback is not good idea here as cargo-binstall doesn't provide prebuilt binaries for these.)
|
||||
bail "$(uname -m) runner is not supported yet by this action; if you need support for this platform, please submit an issue at <https://github.com/taiki-e/install-action>"
|
||||
;;
|
||||
# GitHub Actions Runner supports Linux (x86_64, AArch64, Arm), Windows (x86_64, AArch64),
|
||||
# and macOS (x86_64, AArch64).
|
||||
# https://github.com/actions/runner/blob/v2.321.0/.github/workflows/build.yml#L21
|
||||
|
||||
30
manifests/release-plz.json
generated
30
manifests/release-plz.json
generated
@@ -22,10 +22,36 @@
|
||||
},
|
||||
"license_markdown": "[MIT](https://github.com/release-plz/release-plz/blob/main/LICENSE-MIT) OR [Apache-2.0](https://github.com/release-plz/release-plz/blob/main/LICENSE-APACHE)",
|
||||
"latest": {
|
||||
"version": "0.3.138"
|
||||
"version": "0.3.139"
|
||||
},
|
||||
"0.3": {
|
||||
"version": "0.3.138"
|
||||
"version": "0.3.139"
|
||||
},
|
||||
"0.3.139": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DDCA90D64458A5",
|
||||
"checksum": "30b22405bf97103b9969c183a78b48af7be43ea5977b4ed1d35be893a3874b09"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DDCA9136839113",
|
||||
"checksum": "12151caf3c896eff92a89ebad275c0c057a26fc6fec0d42116338690b46ab91f"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DDCA91729E305C",
|
||||
"checksum": "34bb809d249c0a8ff35f58361a6dfaf06ec90dd592c17f757e96f81989542ad6"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DDCA90EE7CF818",
|
||||
"checksum": "7864fab19ef24d66bce0a36f7ca2192cb3a97d6fb6e189d0f7b4458aa0d61b22"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DDCA91C6CACD59",
|
||||
"checksum": "32587494ddad8dd101a56559feabcc091384a22199c1c52c42a4d1c3f1399403"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DDCA9165298DFA",
|
||||
"checksum": "01cd1941558053b09287321c4540c799c8ca10acfde25a9d04a5442d8d6a61ff"
|
||||
}
|
||||
},
|
||||
"0.3.138": {
|
||||
"x86_64_linux_musl": {
|
||||
|
||||
34
manifests/wasmtime.json
generated
34
manifests/wasmtime.json
generated
@@ -28,7 +28,39 @@
|
||||
},
|
||||
"license_markdown": "[Apache-2.0 WITH LLVM-exception](https://github.com/bytecodealliance/wasmtime/blob/main/LICENSE)",
|
||||
"latest": {
|
||||
"version": "34.0.2"
|
||||
"version": "35.0.0"
|
||||
},
|
||||
"35": {
|
||||
"version": "35.0.0"
|
||||
},
|
||||
"35.0": {
|
||||
"version": "35.0.0"
|
||||
},
|
||||
"35.0.0": {
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DDC93C94C50501",
|
||||
"checksum": "e3d2aae710a5cef548ab13f7e4ed23adc4fa1e9b4797049f4459320f32224011"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DDC93C95E3FEF7",
|
||||
"checksum": "1ef7d07b8a8ef7e261281ad6a1b14ebf462f84c534593ca20e70ec8097524247"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DDC93C9A7B1865",
|
||||
"checksum": "cb4d9b788e81268edfb43d26c37dc4115060635ff4eceed16f4f9e6f331179b1"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"etag": "0x8DDC93C85F9342B",
|
||||
"checksum": "304009a9e4cad3616694b4251a01d72b77ae33d884680f3586710a69bd31b8f8"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DDC93C873AAA7C",
|
||||
"checksum": "8ad8832564e15053cd982c732fac39417b2307bf56145d02ffd153673277c665"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DDC93C89B1220F",
|
||||
"checksum": "e1cde6a2258379e04bdd808c549c75c74b430785d703609a92fcc1aa9492a3e4"
|
||||
}
|
||||
},
|
||||
"34": {
|
||||
"version": "34.0.2"
|
||||
|
||||
Reference in New Issue
Block a user