mirror of
https://github.com/taiki-e/install-action.git
synced 2026-05-03 19:50:35 +00:00
Compare commits
18 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1623b01885 | ||
|
|
7f54b6535b | ||
|
|
d585fd3624 | ||
|
|
b4662e017d | ||
|
|
93909e619a | ||
|
|
d188da0a65 | ||
|
|
2abf6a9d2f | ||
|
|
53a36e2933 | ||
|
|
a7bba2295f | ||
|
|
d6d8fdc041 | ||
|
|
c99cc51b30 | ||
|
|
35aa282e0f | ||
|
|
8962e8bc90 | ||
|
|
86ed27786e | ||
|
|
d8fcd11e5f | ||
|
|
03efa19be6 | ||
|
|
14dc975de9 | ||
|
|
00c7072f52 |
3
.github/workflows/ci.yml
vendored
3
.github/workflows/ci.yml
vendored
@@ -177,9 +177,10 @@ jobs:
|
||||
- name: Install requirements (old debian)
|
||||
run: |
|
||||
# In Debian, the old repositories is removed from the main mirrors some time after EoL.
|
||||
codename=$(grep -E '^VERSION_CODENAME=' /etc/os-release | cut -d= -f2)
|
||||
sed -i /etc/apt/sources.list -e 's/deb.debian.org/archive.debian.org/g' \
|
||||
-e 's|security.debian.org|archive.debian.org/|g' \
|
||||
-e '/stretch-updates/d'
|
||||
-e "/${codename}-updates/d"
|
||||
if: startsWith(matrix.container, 'debian:9') || startsWith(matrix.container, 'debian:10')
|
||||
- name: Install requirements (centos)
|
||||
run: |
|
||||
|
||||
37
CHANGELOG.md
37
CHANGELOG.md
@@ -10,6 +10,34 @@ 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.
|
||||
|
||||
## [2.56.19] - 2025-07-19
|
||||
|
||||
- Update `cargo-llvm-cov@latest` to 0.6.18.
|
||||
|
||||
## [2.56.18] - 2025-07-19
|
||||
|
||||
- Update `just@latest` to 1.42.3.
|
||||
|
||||
## [2.56.17] - 2025-07-18
|
||||
|
||||
- Update `wasmtime@latest` to 34.0.2.
|
||||
|
||||
## [2.56.16] - 2025-07-18
|
||||
|
||||
- Update `cargo-zigbuild@latest` to 0.20.1.
|
||||
@@ -4162,7 +4190,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.56.16...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
|
||||
[2.56.17]: https://github.com/taiki-e/install-action/compare/v2.56.16...v2.56.17
|
||||
[2.56.16]: https://github.com/taiki-e/install-action/compare/v2.56.15...v2.56.16
|
||||
[2.56.15]: https://github.com/taiki-e/install-action/compare/v2.56.14...v2.56.15
|
||||
[2.56.14]: https://github.com/taiki-e/install-action/compare/v2.56.13...v2.56.14
|
||||
|
||||
@@ -111,7 +111,7 @@ See the [Supported tools section](#supported-tools) for how to ensure that fallb
|
||||
|
||||
This action has been tested for GitHub-hosted runners (Ubuntu, macOS, Windows) and containers (Ubuntu, Debian, Fedora, CentOS, Alma, openSUSE, Arch, Alpine).
|
||||
|
||||
On Linux, if any required tools are missing, this action will attempt to install them from distro's package manager, so no pre-setup is usually required (except for CentOS or Debian 9 (or older) or very old distro described below, which was already EoL and needs to use vault/archive repos -- see "Install requirements" in [our CI config](https://github.com/taiki-e/install-action/blob/HEAD/.github/workflows/ci.yml) for example of setup).
|
||||
On Linux, if any required tools are missing, this action will attempt to install them from distro's package manager, so no pre-setup is usually required (except for CentOS or Debian 10 (or older) or very old distro described below, which was already EoL and needs to use vault/archive repos -- see "Install requirements" in [our CI config](https://github.com/taiki-e/install-action/blob/HEAD/.github/workflows/ci.yml) for example of setup).
|
||||
|
||||
On other platforms, at least the following tools are required:
|
||||
|
||||
|
||||
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
|
||||
|
||||
26
manifests/cargo-llvm-cov.json
generated
26
manifests/cargo-llvm-cov.json
generated
@@ -19,10 +19,32 @@
|
||||
},
|
||||
"license_markdown": "[Apache-2.0](https://github.com/taiki-e/cargo-llvm-cov/blob/main/LICENSE-APACHE) OR [MIT](https://github.com/taiki-e/cargo-llvm-cov/blob/main/LICENSE-MIT)",
|
||||
"latest": {
|
||||
"version": "0.6.17"
|
||||
"version": "0.6.18"
|
||||
},
|
||||
"0.6": {
|
||||
"version": "0.6.17"
|
||||
"version": "0.6.18"
|
||||
},
|
||||
"0.6.18": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DDC6AE5797B13D",
|
||||
"checksum": "6c2a864fe9bf63270b24aa0786a465799cafc2b9e9c0725bee1325df5e0863e6"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DDC6AEAE510163",
|
||||
"checksum": "bf5ea6340c7b53d5b34da4d861fdd28b7aaadcda574c64dfc66c9bfb06f3e79d"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DDC6AEA1EEE2C0",
|
||||
"checksum": "f8605cb0bf19c5e2f4a638ee430740c7e4e8020648a542fb772b614803c0ebc6"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DDC6AE5E963943",
|
||||
"checksum": "b7e923aafc0298ec051ad52fdc884790b2bcabac8e16f952b2dd2acfcfa3d79f"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DDC6AE95D27F49",
|
||||
"checksum": "30680c53a21f03d6a5aa40068cfc303de1cfac42ed7acd364256a42a53e1c0bf"
|
||||
}
|
||||
},
|
||||
"0.6.17": {
|
||||
"x86_64_linux_musl": {
|
||||
|
||||
32
manifests/just.json
generated
32
manifests/just.json
generated
@@ -22,13 +22,39 @@
|
||||
},
|
||||
"license_markdown": "[CC0-1.0](https://github.com/casey/just/blob/master/LICENSE)",
|
||||
"latest": {
|
||||
"version": "1.42.2"
|
||||
"version": "1.42.3"
|
||||
},
|
||||
"1": {
|
||||
"version": "1.42.2"
|
||||
"version": "1.42.3"
|
||||
},
|
||||
"1.42": {
|
||||
"version": "1.42.2"
|
||||
"version": "1.42.3"
|
||||
},
|
||||
"1.42.3": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DDC66E6FB1D651",
|
||||
"checksum": "675cdb913c698a7888bbaac74d65619f636686bca7ebfb90d2bd274252231a47"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DDC66E6A1D2D6C",
|
||||
"checksum": "04e9bf1aef9a737bcada6ed0e042126426eaa6bd3c1d3b3cdb7069106e91ccba"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DDC66EA4C1F821",
|
||||
"checksum": "4e21f40075212f22bd85f31871982105110c5dd02504c354904f56d7de8650c8"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DDC66E9EC4A296",
|
||||
"checksum": "e09a503ae877416d6fe2156009140e7e7deb95f897095b24a1d7150146390e65"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DDC66E65369E5B",
|
||||
"checksum": "3d4bf2d11a0663b3b53f2b4aed32215ee79a98ddf0f955f8061e6ba5a8cb3f0e"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DDC66EA57C8712",
|
||||
"checksum": "6d4143777925a1932fb9404edbd31dbfe344cc9c1c63322cb72bc3fd82454aa2"
|
||||
}
|
||||
},
|
||||
"1.42.2": {
|
||||
"x86_64_linux_musl": {
|
||||
|
||||
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": {
|
||||
|
||||
29
manifests/syft.json
generated
29
manifests/syft.json
generated
@@ -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"
|
||||
|
||||
120
manifests/wasmtime.json
generated
120
manifests/wasmtime.json
generated
@@ -28,13 +28,71 @@
|
||||
},
|
||||
"license_markdown": "[Apache-2.0 WITH LLVM-exception](https://github.com/bytecodealliance/wasmtime/blob/main/LICENSE)",
|
||||
"latest": {
|
||||
"version": "34.0.1"
|
||||
"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.1"
|
||||
"version": "34.0.2"
|
||||
},
|
||||
"34.0": {
|
||||
"version": "34.0.1"
|
||||
"version": "34.0.2"
|
||||
},
|
||||
"34.0.2": {
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DDC622EE2B131C",
|
||||
"checksum": "16b37931dbc0db9f5d5bc879687ec39ddcec8ece754e76c61702f64d1472b637"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DDC622EF554B29",
|
||||
"checksum": "72a18cd00c94bf875692616cb5bd4ecb95fef4d355e569c9929d521aa9b9c1f0"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DDC622F4167A22",
|
||||
"checksum": "013d4703ae8645de2ce449b16bd4fe69732f437a663e276cedc34f3e7c864460"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"etag": "0x8DDC622DEB95AF7",
|
||||
"checksum": "c7d6f6a2d15bf2310b0aea8b57dd392c091aa9830f57408cbea86affcc132756"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DDC622DFF24F83",
|
||||
"checksum": "93b3667fe09f1fe9f10bbd6ab40ab75f2fb71ed595cc3d1406811a8a36b67a24"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DDC622E27B76FA",
|
||||
"checksum": "6f035fec0130aebc73fbcd9df71260f1b464ed7faa4600f7447323ea46b4d87c"
|
||||
}
|
||||
},
|
||||
"34.0.1": {
|
||||
"x86_64_linux_gnu": {
|
||||
@@ -89,10 +147,36 @@
|
||||
}
|
||||
},
|
||||
"33": {
|
||||
"version": "33.0.1"
|
||||
"version": "33.0.2"
|
||||
},
|
||||
"33.0": {
|
||||
"version": "33.0.1"
|
||||
"version": "33.0.2"
|
||||
},
|
||||
"33.0.2": {
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DDC6257F38AF22",
|
||||
"checksum": "20076cf5f8c84154f019d872fbca3a6b059e819670ba0f648f8fa9a0b59757ab"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DDC62580745FB4",
|
||||
"checksum": "5bcc0629d80978576d0a57cc072fd58bd32218d16cb4441cb582e76e5f98927a"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DDC62584D4EFA2",
|
||||
"checksum": "ab1c59bbfb9ca5a5144ee5d16baff42d8cc5f68ca60665ffbba393eb0fcf705c"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"etag": "0x8DDC6256F96808C",
|
||||
"checksum": "c09bf5c7172f5fb3e97a50546818c7f2b4160b42f5ce8a639e3c882919e37e33"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DDC62570F155EC",
|
||||
"checksum": "56b05ac22780d9fc75944ac4613a4baefcb53e72699de68770617f554afbf219"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DDC6257371ADC5",
|
||||
"checksum": "d99a0a65da79f150d802ce9a0961954d14a6ca3357d6c548839f7cf901011792"
|
||||
}
|
||||
},
|
||||
"33.0.1": {
|
||||
"x86_64_linux_gnu": {
|
||||
@@ -621,10 +705,32 @@
|
||||
}
|
||||
},
|
||||
"24": {
|
||||
"version": "24.0.3"
|
||||
"version": "24.0.4"
|
||||
},
|
||||
"24.0": {
|
||||
"version": "24.0.3"
|
||||
"version": "24.0.4"
|
||||
},
|
||||
"24.0.4": {
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DDC6229513C535",
|
||||
"checksum": "6bc8a40f8b0323b01f65980880145eb3b4760a6e118266d39d23ed2423d205eb"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DDC62296335AF7",
|
||||
"checksum": "06d83f62d75b1ed3357605171811727beee6bbe75cc7c6243e4e09753733e676"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DDC6229A6E1700",
|
||||
"checksum": "eda8c09d383c06b6416239e4afe13c14a79d7a98f971e4aa721c9710c69f5900"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"etag": "0x8DDC6228D074707",
|
||||
"checksum": "ddcbfaeadcf2348424d6fc15778a463dac265b4a0dd6562e7b6c1737973948c9"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DDC6228E101300",
|
||||
"checksum": "d4ce46790b143140ac877a37181146e5390e3b37fe0a1a7db6a656ffe78d2660"
|
||||
}
|
||||
},
|
||||
"24.0.3": {
|
||||
"x86_64_linux_gnu": {
|
||||
|
||||
Reference in New Issue
Block a user