Compare commits

...

8 Commits

Author SHA1 Message Date
Taiki Endo
d585fd3624 Release 2.56.22 2025-07-24 10:40:43 +09:00
Taiki Endo
b4662e017d Update wasmtime@latest to 35.0.0 2025-07-23 06:18:10 +09:00
Taiki Endo
93909e619a Update wasmtime manifest 2025-07-23 03:23:04 +09:00
Taiki Endo
d188da0a65 Release 2.56.21 2025-07-22 10:54:21 +09:00
Taiki Endo
2abf6a9d2f Update changelog 2025-07-22 10:54:00 +09:00
Taiki Endo
53a36e2933 Improve error message for other unsupported host architectures 2025-07-22 10:43:50 +09:00
Taiki Endo
a7bba2295f Release 2.56.20 2025-07-22 10:13:50 +09:00
Taiki Endo
d6d8fdc041 Update syft@latest to 1.29.0 2025-07-22 06:13:58 +09:00
4 changed files with 81 additions and 4 deletions

View File

@@ -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.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.
## [2.56.19] - 2025-07-19
- Update `cargo-llvm-cov@latest` to 0.6.18.
@@ -4174,7 +4186,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.19...HEAD
[Unreleased]: https://github.com/taiki-e/install-action/compare/v2.56.22...HEAD
[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
[2.56.17]: https://github.com/taiki-e/install-action/compare/v2.56.16...v2.56.17

View File

@@ -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

29
manifests/syft.json generated
View File

@@ -24,10 +24,35 @@
},
"license_markdown": "[Apache-2.0](https://github.com/anchore/syft/blob/main/LICENSE)",
"latest": {
"version": "1.28.0"
"version": "1.29.0"
},
"1": {
"version": "1.28.0"
"version": "1.29.0"
},
"1.29": {
"version": "1.29.0"
},
"1.29.0": {
"x86_64_linux_musl": {
"etag": "0x8DDC88FB6DD6A89",
"checksum": "5b01c831cb5d712899d9179cabd80f55b6708dbd36af981ce27e59b6569e6690"
},
"x86_64_macos": {
"etag": "0x8DDC88FB7D7C772",
"checksum": "a4697cfa3295c3465f81f45117285b5c16b66425eb050f33d6dbcd0b58278088"
},
"x86_64_windows": {
"etag": "0x8DDC88FB7E9DB82",
"checksum": "043abda6cf37235484c8c96925983f5c28275a92963d4817ab066355c4d037b6"
},
"aarch64_linux_musl": {
"etag": "0x8DDC88FB6FF4B48",
"checksum": "1d93db2bf6f366683e7aef46d3d6a9c6ab5d72caaae1c3be1a35823c18b6f970"
},
"aarch64_macos": {
"etag": "0x8DDC88FB7D0A385",
"checksum": "a91b767b2cdf1c2171c560601e640c48638e967c8124eb568fd59cc66b3adb52"
}
},
"1.28": {
"version": "1.28.0"

View File

@@ -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"