mirror of
https://github.com/taiki-e/install-action.git
synced 2026-04-26 17:10:48 +00:00
Compare commits
39 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
638d0bf357 | ||
|
|
d6aa4ce660 | ||
|
|
2d31e9510b | ||
|
|
20c83a1018 | ||
|
|
748ba9af43 | ||
|
|
93a46af020 | ||
|
|
e1fa0f071a | ||
|
|
5be2449dc8 | ||
|
|
9bef7e9c3d | ||
|
|
3981b01dd3 | ||
|
|
5b02de393a | ||
|
|
5fe2a9c74d | ||
|
|
47e2e5cbd7 | ||
|
|
05718eba42 | ||
|
|
942f3ad679 | ||
|
|
4a3cc43080 | ||
|
|
c8b5e0ff44 | ||
|
|
596eade599 | ||
|
|
05260f07f3 | ||
|
|
cbe8580ec9 | ||
|
|
fff8de5df4 | ||
|
|
58a3efb22c | ||
|
|
458a731083 | ||
|
|
9f6abfd69f | ||
|
|
361676cd6c | ||
|
|
670719f0e8 | ||
|
|
585c3a9867 | ||
|
|
7348990d6a | ||
|
|
e51884be2c | ||
|
|
4910c92852 | ||
|
|
18ab6bde9d | ||
|
|
7de76d1670 | ||
|
|
5b7f19ed47 | ||
|
|
dc04086d82 | ||
|
|
60af41b562 | ||
|
|
0a7b6dc29e | ||
|
|
294c125779 | ||
|
|
a6c0fffc64 | ||
|
|
49218e3788 |
20
.github/workflows/ci.yml
vendored
20
.github/workflows/ci.yml
vendored
@@ -52,6 +52,7 @@ jobs:
|
|||||||
tool: major
|
tool: major
|
||||||
- os: macos-13
|
- os: macos-13
|
||||||
- os: macos-14
|
- os: macos-14
|
||||||
|
- os: macos-15
|
||||||
- os: windows-2019
|
- os: windows-2019
|
||||||
- os: windows-2019
|
- os: windows-2019
|
||||||
bash: msys64
|
bash: msys64
|
||||||
@@ -62,24 +63,30 @@ jobs:
|
|||||||
bash: msys64
|
bash: msys64
|
||||||
- os: windows-2022
|
- os: windows-2022
|
||||||
bash: cygwin
|
bash: cygwin
|
||||||
|
- os: windows-2022
|
||||||
|
tool: major.minor.patch
|
||||||
|
- os: windows-2022
|
||||||
|
tool: major.minor
|
||||||
|
- os: windows-2022
|
||||||
|
tool: major
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
timeout-minutes: 60
|
timeout-minutes: 60
|
||||||
steps:
|
steps:
|
||||||
- run: |
|
- run: |
|
||||||
printf 'C:\msys64\mingw32\bin\n' >>"${GITHUB_PATH}"
|
printf '%s\n' 'C:\msys64\mingw32\bin' >>"${GITHUB_PATH}"
|
||||||
printf 'C:\msys64\usr\bin\n' >>"${GITHUB_PATH}"
|
printf '%s\n' 'C:\msys64\usr\bin' >>"${GITHUB_PATH}"
|
||||||
if: matrix.bash == 'msys64'
|
if: matrix.bash == 'msys64'
|
||||||
- run: |
|
- run: |
|
||||||
choco install --no-progress --requirechecksums cygwin
|
choco install --no-progress --requirechecksums cygwin
|
||||||
printf 'C:\tools\cygwin\bin\n' >>"${GITHUB_PATH}"
|
printf '%s\n' 'C:\tools\cygwin\bin' >>"${GITHUB_PATH}"
|
||||||
printf 'C:\tools\cygwin\usr\bin\n' >>"${GITHUB_PATH}"
|
printf '%s\n' 'C:\tools\cygwin\usr\bin' >>"${GITHUB_PATH}"
|
||||||
if: matrix.bash == 'cygwin'
|
if: matrix.bash == 'cygwin'
|
||||||
- uses: taiki-e/checkout-action@v1
|
- uses: taiki-e/checkout-action@v1
|
||||||
# cross attempts to install rust-src when Cargo.toml is available even if `cross --version`
|
# cross attempts to install rust-src when Cargo.toml is available even if `cross --version`
|
||||||
- run: rm Cargo.toml
|
- run: rm Cargo.toml
|
||||||
- name: Generate tool list
|
- name: Generate tool list
|
||||||
id: tool-list
|
id: tool-list
|
||||||
run: tools/ci/tool-list.sh "${{ matrix.tool }}" >>"${GITHUB_OUTPUT}"
|
run: tools/ci/tool-list.sh "${{ matrix.tool }}" "${{ matrix.os }}" "${{ matrix.bash }}" >>"${GITHUB_OUTPUT}"
|
||||||
- run: env
|
- run: env
|
||||||
- uses: ./
|
- uses: ./
|
||||||
with:
|
with:
|
||||||
@@ -201,8 +208,7 @@ jobs:
|
|||||||
pull-requests: write # for gh pr review --approve
|
pull-requests: write # for gh pr review --approve
|
||||||
steps:
|
steps:
|
||||||
- uses: taiki-e/checkout-action@v1
|
- uses: taiki-e/checkout-action@v1
|
||||||
- name: Install Rust
|
- uses: taiki-e/github-actions/install-rust@stable
|
||||||
run: rustup update stable --no-self-update
|
|
||||||
- name: Generate Cargo.lock
|
- name: Generate Cargo.lock
|
||||||
run: cargo update
|
run: cargo update
|
||||||
- uses: Swatinem/rust-cache@v2
|
- uses: Swatinem/rust-cache@v2
|
||||||
|
|||||||
81
CHANGELOG.md
81
CHANGELOG.md
@@ -10,6 +10,72 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [2.44.15] - 2024-10-01
|
||||||
|
|
||||||
|
- Update `typos@latest` to 1.25.0.
|
||||||
|
|
||||||
|
## [2.44.14] - 2024-10-01
|
||||||
|
|
||||||
|
- Update `just@latest` to 1.36.0.
|
||||||
|
|
||||||
|
- Update `release-plz@latest` to 0.3.93.
|
||||||
|
|
||||||
|
- Update `cargo-make@latest` to 0.37.18.
|
||||||
|
|
||||||
|
## [2.44.13] - 2024-09-28
|
||||||
|
|
||||||
|
- Update `sccache@latest` to 0.8.2.
|
||||||
|
|
||||||
|
- Update `release-plz@latest` to 0.3.92.
|
||||||
|
|
||||||
|
## [2.44.12] - 2024-09-28
|
||||||
|
|
||||||
|
- Fix compatibility issue with Cygwin `sh`. This fixes a regression introduced in 2.42.0.
|
||||||
|
|
||||||
|
## [2.44.11] - 2024-09-28
|
||||||
|
|
||||||
|
- Update `git-cliff@latest` to 2.6.1.
|
||||||
|
|
||||||
|
## [2.44.10] - 2024-09-26
|
||||||
|
|
||||||
|
- Update `cargo-machete@latest` to 0.7.0.
|
||||||
|
|
||||||
|
## [2.44.9] - 2024-09-25
|
||||||
|
|
||||||
|
- Update `wasmtime@latest` to 25.0.1.
|
||||||
|
|
||||||
|
## [2.44.8] - 2024-09-24
|
||||||
|
|
||||||
|
- Update `rclone@latest` to 1.68.1.
|
||||||
|
|
||||||
|
- Update `syft@latest` to 1.13.0.
|
||||||
|
|
||||||
|
- Update `cargo-zigbuild@latest` to 0.19.3.
|
||||||
|
|
||||||
|
## [2.44.7] - 2024-09-22
|
||||||
|
|
||||||
|
- Update `cargo-binstall@latest` to 1.10.6.
|
||||||
|
|
||||||
|
- Update `git-cliff@latest` to 2.6.0.
|
||||||
|
|
||||||
|
## [2.44.6] - 2024-09-20
|
||||||
|
|
||||||
|
- Update `wasmtime@latest` to 25.0.0.
|
||||||
|
|
||||||
|
## [2.44.5] - 2024-09-19
|
||||||
|
|
||||||
|
- Update `biome@latest` to 1.9.2.
|
||||||
|
|
||||||
|
## [2.44.4] - 2024-09-19
|
||||||
|
|
||||||
|
- Update `protoc@latest` to 3.28.2.
|
||||||
|
|
||||||
|
- Update `cargo-zigbuild@latest` to 0.19.2.
|
||||||
|
|
||||||
|
## [2.44.3] - 2024-09-18
|
||||||
|
|
||||||
|
- Update `release-plz@latest` to 0.3.91.
|
||||||
|
|
||||||
## [2.44.2] - 2024-09-16
|
## [2.44.2] - 2024-09-16
|
||||||
|
|
||||||
- Update `typos@latest` to 1.24.6.
|
- Update `typos@latest` to 1.24.6.
|
||||||
@@ -2744,7 +2810,20 @@ Note: This release is considered a breaking change because installing on version
|
|||||||
|
|
||||||
Initial release
|
Initial release
|
||||||
|
|
||||||
[Unreleased]: https://github.com/taiki-e/install-action/compare/v2.44.2...HEAD
|
[Unreleased]: https://github.com/taiki-e/install-action/compare/v2.44.15...HEAD
|
||||||
|
[2.44.15]: https://github.com/taiki-e/install-action/compare/v2.44.14...v2.44.15
|
||||||
|
[2.44.14]: https://github.com/taiki-e/install-action/compare/v2.44.13...v2.44.14
|
||||||
|
[2.44.13]: https://github.com/taiki-e/install-action/compare/v2.44.12...v2.44.13
|
||||||
|
[2.44.12]: https://github.com/taiki-e/install-action/compare/v2.44.11...v2.44.12
|
||||||
|
[2.44.11]: https://github.com/taiki-e/install-action/compare/v2.44.10...v2.44.11
|
||||||
|
[2.44.10]: https://github.com/taiki-e/install-action/compare/v2.44.9...v2.44.10
|
||||||
|
[2.44.9]: https://github.com/taiki-e/install-action/compare/v2.44.8...v2.44.9
|
||||||
|
[2.44.8]: https://github.com/taiki-e/install-action/compare/v2.44.7...v2.44.8
|
||||||
|
[2.44.7]: https://github.com/taiki-e/install-action/compare/v2.44.6...v2.44.7
|
||||||
|
[2.44.6]: https://github.com/taiki-e/install-action/compare/v2.44.5...v2.44.6
|
||||||
|
[2.44.5]: https://github.com/taiki-e/install-action/compare/v2.44.4...v2.44.5
|
||||||
|
[2.44.4]: https://github.com/taiki-e/install-action/compare/v2.44.3...v2.44.4
|
||||||
|
[2.44.3]: https://github.com/taiki-e/install-action/compare/v2.44.2...v2.44.3
|
||||||
[2.44.2]: https://github.com/taiki-e/install-action/compare/v2.44.1...v2.44.2
|
[2.44.2]: https://github.com/taiki-e/install-action/compare/v2.44.1...v2.44.2
|
||||||
[2.44.1]: https://github.com/taiki-e/install-action/compare/v2.44.0...v2.44.1
|
[2.44.1]: https://github.com/taiki-e/install-action/compare/v2.44.0...v2.44.1
|
||||||
[2.44.0]: https://github.com/taiki-e/install-action/compare/v2.43.7...v2.44.0
|
[2.44.0]: https://github.com/taiki-e/install-action/compare/v2.43.7...v2.44.0
|
||||||
|
|||||||
@@ -46,3 +46,11 @@ runs:
|
|||||||
INPUT_TOOL: ${{ inputs.tool }}
|
INPUT_TOOL: ${{ inputs.tool }}
|
||||||
INPUT_CHECKSUM: ${{ inputs.checksum }}
|
INPUT_CHECKSUM: ${{ inputs.checksum }}
|
||||||
INPUT_FALLBACK: ${{ inputs.fallback }}
|
INPUT_FALLBACK: ${{ inputs.fallback }}
|
||||||
|
if: runner.os != 'Windows'
|
||||||
|
- run: bash --noprofile --norc "${GITHUB_ACTION_PATH:?}/main.sh"
|
||||||
|
shell: bash
|
||||||
|
env:
|
||||||
|
INPUT_TOOL: ${{ inputs.tool }}
|
||||||
|
INPUT_CHECKSUM: ${{ inputs.checksum }}
|
||||||
|
INPUT_FALLBACK: ${{ inputs.fallback }}
|
||||||
|
if: runner.os == 'Windows'
|
||||||
|
|||||||
32
manifests/biome.json
generated
32
manifests/biome.json
generated
@@ -36,13 +36,39 @@
|
|||||||
},
|
},
|
||||||
"license_markdown": "[Apache-2.0](https://github.com/biomejs/biome/blob/main/LICENSE-APACHE) OR [MIT](https://github.com/biomejs/biome/blob/main/LICENSE-MIT)",
|
"license_markdown": "[Apache-2.0](https://github.com/biomejs/biome/blob/main/LICENSE-APACHE) OR [MIT](https://github.com/biomejs/biome/blob/main/LICENSE-MIT)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "1.9.1"
|
"version": "1.9.2"
|
||||||
},
|
},
|
||||||
"1": {
|
"1": {
|
||||||
"version": "1.9.1"
|
"version": "1.9.2"
|
||||||
},
|
},
|
||||||
"1.9": {
|
"1.9": {
|
||||||
"version": "1.9.1"
|
"version": "1.9.2"
|
||||||
|
},
|
||||||
|
"1.9.2": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DCD8AD3FF177C9",
|
||||||
|
"checksum": "74157b89b48daf22cbf5c4fdebc356b5e133421dbf12525f4350b1194c1c73e8"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DCD8AD400CA964",
|
||||||
|
"checksum": "c3ae43520f89030aa79f9b5ba79ec1e7baa103b3babdb26f7f9e47d336d1f225"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DCD8AD3FF26124",
|
||||||
|
"checksum": "82193f9a800c627d7359d95855af537d11a2404976d6823e1bde60f55fc0730d"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"etag": "0x8DCD8AD3FF93742",
|
||||||
|
"checksum": "da807b5f56502a0d0cafe94722f67ec62ba6c29af99becfb2e4c331b95c5c2ab"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DCD8AD4008DD15",
|
||||||
|
"checksum": "6a7c5859a351b9983b82c2113e760a790712aa0c9ae2b8b1f897efa35328e600"
|
||||||
|
},
|
||||||
|
"aarch64_windows": {
|
||||||
|
"etag": "0x8DCD8AD40598886",
|
||||||
|
"checksum": "b9df806147eb085f2ceac0df919ac07eb1a8cc57f6e0ba3edb02f1a76bf822cd"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"1.9.1": {
|
"1.9.1": {
|
||||||
"x86_64_linux_musl": {
|
"x86_64_linux_musl": {
|
||||||
|
|||||||
28
manifests/cargo-binstall.json
generated
28
manifests/cargo-binstall.json
generated
@@ -22,32 +22,32 @@
|
|||||||
},
|
},
|
||||||
"license_markdown": "[GPL-3.0](https://github.com/cargo-bins/cargo-binstall/blob/HEAD/crates/bin/LICENSE)",
|
"license_markdown": "[GPL-3.0](https://github.com/cargo-bins/cargo-binstall/blob/HEAD/crates/bin/LICENSE)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "1.10.5"
|
"version": "1.10.6"
|
||||||
},
|
},
|
||||||
"1.10.5": {
|
"1.10.6": {
|
||||||
"x86_64_linux_musl": {
|
"x86_64_linux_musl": {
|
||||||
"etag": "0x8DCD243CAFABE2B",
|
"etag": "0x8DCDAF20370B791",
|
||||||
"checksum": "e4f503d2e17436197e18caabe023265ef00da1422575fc9013b2753fdb9fa4d9"
|
"checksum": "cc3303d32b590e3d280914d12df69db7e54f7c1dedbd157a721e06d1bd149a84"
|
||||||
},
|
},
|
||||||
"x86_64_macos": {
|
"x86_64_macos": {
|
||||||
"etag": "0x8DCD24378364C74",
|
"etag": "0x8DCDAF1CE7B41B3",
|
||||||
"checksum": "21d47a620ec3aa99321201483627c142da181d0cee62a831da8c97162098d2b1"
|
"checksum": "cfb889d34ea82b23cf7475b1b64f487a339e3bf3bc88273e79d80544a4b3182a"
|
||||||
},
|
},
|
||||||
"x86_64_windows": {
|
"x86_64_windows": {
|
||||||
"etag": "0x8DCD24452B01ED4",
|
"etag": "0x8DCDAF2BA810796",
|
||||||
"checksum": "29c1fbc5c9cfeb29207a79b6f903bb4c6c5b7277251910b180b6d1ab9a1d5344"
|
"checksum": "0dd2f2bb1449a577fcc706fb9827395c711bbb9d5089b9e0907c66fb1f615547"
|
||||||
},
|
},
|
||||||
"aarch64_linux_musl": {
|
"aarch64_linux_musl": {
|
||||||
"etag": "0x8DCD24388AEFE1C",
|
"etag": "0x8DCDAF1DD2EC310",
|
||||||
"checksum": "752df38cf823792d2c0f3ecc3643a20eac5b67605ac8bea7eed57e7a4e7a40f5"
|
"checksum": "d38dfaa00b99b6088621d19179309a2abbf101a04de316105240f2c824f10adc"
|
||||||
},
|
},
|
||||||
"aarch64_macos": {
|
"aarch64_macos": {
|
||||||
"etag": "0x8DCD243EE25AD47",
|
"etag": "0x8DCDAF218B9C52C",
|
||||||
"checksum": "351d3ef0a87d61d33b3620f3cd9be4c58c2d41b7acf4910ba71008999d82aa42"
|
"checksum": "5aad9611b43df7165c1d48e5304132bf5ca5e0b91c23c7ec28d804e19900abe3"
|
||||||
},
|
},
|
||||||
"aarch64_windows": {
|
"aarch64_windows": {
|
||||||
"etag": "0x8DCD243F77B1340",
|
"etag": "0x8DCDAF2D6658DF5",
|
||||||
"checksum": "86086186099ac1aa149e4c680bf24c7336322691a28f04e848bd827c5afd8b4d"
|
"checksum": "b2229f11cb12016a99e6deaf8fc504e67bdbfbe8974438cea8f3f4ed220a9cbe"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
31
manifests/cargo-machete.json
generated
31
manifests/cargo-machete.json
generated
@@ -3,7 +3,36 @@
|
|||||||
"template": null,
|
"template": null,
|
||||||
"license_markdown": "[MIT](https://github.com/bnjbvr/cargo-machete/blob/main/LICENSE.md)",
|
"license_markdown": "[MIT](https://github.com/bnjbvr/cargo-machete/blob/main/LICENSE.md)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "0.6.2"
|
"version": "0.7.0"
|
||||||
|
},
|
||||||
|
"0.7": {
|
||||||
|
"version": "0.7.0"
|
||||||
|
},
|
||||||
|
"0.7.0": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"url": "https://github.com/bnjbvr/cargo-machete/releases/download/v0.7.0/cargo-machete-v0.7.0-x86_64-unknown-linux-musl.tar.gz",
|
||||||
|
"etag": "0x8DCDE14D890E1AF",
|
||||||
|
"checksum": "473f663c7b47166fc4eb87f82716ba709b22cc62a52763585c529974b5aeb6e5",
|
||||||
|
"bin": "cargo-machete-v0.7.0-x86_64-unknown-linux-musl/cargo-machete"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"url": "https://github.com/bnjbvr/cargo-machete/releases/download/v0.7.0/cargo-machete-v0.7.0-x86_64-apple-darwin.tar.gz",
|
||||||
|
"etag": "0x8DCDE14CF16B32E",
|
||||||
|
"checksum": "aa95f97a0bd2b36928b2b4495e7b9ddd197bab4d6510903e926c6ad7288272fd",
|
||||||
|
"bin": "cargo-machete-v0.7.0-x86_64-apple-darwin/cargo-machete"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"url": "https://github.com/bnjbvr/cargo-machete/releases/download/v0.7.0/cargo-machete-v0.7.0-x86_64-pc-windows-msvc.tar.gz",
|
||||||
|
"etag": "0x8DCDE152AA824B0",
|
||||||
|
"checksum": "c50e388fbbaf484c140f3644fbc4c6f026dceebe49ffe8929477dd4ac149818c",
|
||||||
|
"bin": "cargo-machete-v0.7.0-x86_64-pc-windows-msvc/cargo-machete.exe"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"url": "https://github.com/bnjbvr/cargo-machete/releases/download/v0.7.0/cargo-machete-v0.7.0-aarch64-apple-darwin.tar.gz",
|
||||||
|
"etag": "0x8DCDE14D5BC10C6",
|
||||||
|
"checksum": "1510e68aae1be38f995c80a8cc16eeadeb4ab304991c0cf0f96773b7b1d41ba7",
|
||||||
|
"bin": "cargo-machete-v0.7.0-aarch64-apple-darwin/cargo-machete"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"0.6": {
|
"0.6": {
|
||||||
"version": "0.6.2"
|
"version": "0.6.2"
|
||||||
|
|||||||
40
manifests/cargo-make.json
generated
40
manifests/cargo-make.json
generated
@@ -20,10 +20,46 @@
|
|||||||
},
|
},
|
||||||
"license_markdown": "[Apache-2.0](https://github.com/sagiegurari/cargo-make/blob/master/LICENSE)",
|
"license_markdown": "[Apache-2.0](https://github.com/sagiegurari/cargo-make/blob/master/LICENSE)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "0.37.16"
|
"version": "0.37.18"
|
||||||
},
|
},
|
||||||
"0.37": {
|
"0.37": {
|
||||||
"version": "0.37.16"
|
"version": "0.37.18"
|
||||||
|
},
|
||||||
|
"0.37.18": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DCE06AFDD593DA",
|
||||||
|
"checksum": "6890cd3d25772471a2aa263bf61636e4455b90a234cccd655c326aaeb0714fc6"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DCE06AF3ED46AA",
|
||||||
|
"checksum": "712b2b9b7750066681c150e1be3137147d1bc3f278dd6fe90e09f52021df75a5"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DCE06B39A89C36",
|
||||||
|
"checksum": "19b8e3b312cde895d6b38cc6fa699da09cdcbdd64a165f6f34428bd49ff0cb20"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DCE06AA717723B",
|
||||||
|
"checksum": "f6464c4af79426cbcf4bc4dcd6dbef560cb8caaa9857effb3ca6b6576a055472"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"0.37.17": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DCDFCE9152BF14",
|
||||||
|
"checksum": "35cdb06c703f38ef65480cc2cf4aec8e23e2bc44ab5e67b703d98c00eab1db40"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DCDFCE28B5E799",
|
||||||
|
"checksum": "62a0d435f40600873178c6d6a1cff4cd7cde2149cd995c4f6a22600451106e5f"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DCDFCEB7643BC9",
|
||||||
|
"checksum": "685e3643630864723c49f5e126d08ba3bf2b5e4683fef02c7e8755515062a960"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DCDFCE39367C57",
|
||||||
|
"checksum": "2825d48b65ee51ecbe4c2773444a3326705a45deb44b3d9b94dcb9b67e00f104"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"0.37.16": {
|
"0.37.16": {
|
||||||
"x86_64_linux_musl": {
|
"x86_64_linux_musl": {
|
||||||
|
|||||||
48
manifests/cargo-zigbuild.json
generated
48
manifests/cargo-zigbuild.json
generated
@@ -19,10 +19,54 @@
|
|||||||
},
|
},
|
||||||
"license_markdown": "[MIT](https://github.com/rust-cross/cargo-zigbuild/blob/main/LICENSE)",
|
"license_markdown": "[MIT](https://github.com/rust-cross/cargo-zigbuild/blob/main/LICENSE)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "0.19.1"
|
"version": "0.19.3"
|
||||||
},
|
},
|
||||||
"0.19": {
|
"0.19": {
|
||||||
"version": "0.19.1"
|
"version": "0.19.3"
|
||||||
|
},
|
||||||
|
"0.19.3": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DCDCA2DC25EFC6",
|
||||||
|
"checksum": "49d4796319f0b85039783675499d092cfbb95f33f9cc9e6feef239f7f23efe5c"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DCDC9F69902822",
|
||||||
|
"checksum": "ba09c9f260500ffcf6837f57b06f1fc826695bdc28f69b0258067345b25661e1"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"etag": "0x8DCDCA2DC4E31F3",
|
||||||
|
"checksum": "b3bd9e02e1fa8ef4cd0c96a9686f2a9ed8ddf17c175c4de71f8709ca11e83c4a"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DCDCA0D37AABD0",
|
||||||
|
"checksum": "60348c23e14e212b11bb68eec3cf3b5db2d18461f02efb0066ee6b1ec87790de"
|
||||||
|
},
|
||||||
|
"aarch64_windows": {
|
||||||
|
"etag": "0x8DCDC9F9CE2DE4D",
|
||||||
|
"checksum": "c624ac2b937991dd9d08e3d4b4c248ad3ea6ab6ea8e302754ad52b77856193e4"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"0.19.2": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DCD7F42717DB9B",
|
||||||
|
"checksum": "004df391aa3bedcda64ce887a1e28f4c560a5afa417985f2e6a43dd57d1f7704"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DCD7F3EC049C4B",
|
||||||
|
"checksum": "2ef56bf18329eafd2a8948b695c19178fe4f2fe7f8bef295f570f1492c916988"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"etag": "0x8DCD7F3F7DE776A",
|
||||||
|
"checksum": "7b323b138a49a684a811bb774f7a868131318bb5e0bd5bad20d44e7f6bf016a2"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DCD7F991A9561E",
|
||||||
|
"checksum": "8dc56fc231d55522dcb88fa96b35db352711a7a86a9abaed76013c712ae58515"
|
||||||
|
},
|
||||||
|
"aarch64_windows": {
|
||||||
|
"etag": "0x8DCD7F4493614C5",
|
||||||
|
"checksum": "9da4d347bb1b26a10de5c9025561703c12ae78dc222205a2901a7ece739231fd"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"0.19.1": {
|
"0.19.1": {
|
||||||
"x86_64_linux_musl": {
|
"x86_64_linux_musl": {
|
||||||
|
|||||||
59
manifests/git-cliff.json
generated
59
manifests/git-cliff.json
generated
@@ -28,10 +28,65 @@
|
|||||||
},
|
},
|
||||||
"license_markdown": "[MIT](https://github.com/orhun/git-cliff/blob/main/LICENSE-MIT) OR [Apache-2.0](https://github.com/orhun/git-cliff/blob/main/LICENSE-APACHE)",
|
"license_markdown": "[MIT](https://github.com/orhun/git-cliff/blob/main/LICENSE-MIT) OR [Apache-2.0](https://github.com/orhun/git-cliff/blob/main/LICENSE-APACHE)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "2.5.0"
|
"version": "2.6.1"
|
||||||
},
|
},
|
||||||
"2": {
|
"2": {
|
||||||
"version": "2.5.0"
|
"version": "2.6.1"
|
||||||
|
},
|
||||||
|
"2.6": {
|
||||||
|
"version": "2.6.1"
|
||||||
|
},
|
||||||
|
"2.6.1": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DCDF0C286D5E7C",
|
||||||
|
"checksum": "aa79de881c46ad783de43e20e6a5711cd6f7ef7e9b9d01648845d8c577817d78"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DCDF0BF132B0C7",
|
||||||
|
"checksum": "1c819d6beaafe596b1b825519488362c56d7cd330a61d27b68dcf48b2cd13a08"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DCDF0D0C6CFB82",
|
||||||
|
"checksum": "519f7cd9e5f43f1c11f323cddcb1e77b5ca7317a6ff72297be2f41975d45febe"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"etag": "0x8DCDF0C37EC48D9",
|
||||||
|
"checksum": "2e350b6fc7d8e46db466efa1fd35a41103041f9ea45eee9dd7ca8d419aac2155"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DCDF0C177CD533",
|
||||||
|
"checksum": "d1501f61d7037cb7beaa315e6c413c3b92c19d835f59e706a070c344476a3d72"
|
||||||
|
},
|
||||||
|
"aarch64_windows": {
|
||||||
|
"etag": "0x8DCDF0CF49F0785",
|
||||||
|
"checksum": "ad2b600909927b0b5e6e0b593f54e69c5370b3fa969f7fda761638ff6f0d49f5"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"2.6.0": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DCDACFCF1EEFBE",
|
||||||
|
"checksum": "0e82c96fc157ce2169830b89d084fd4c54bf88679cd2343df24071ba32b9018b"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DCDACFA1297C37",
|
||||||
|
"checksum": "6404009773351c002c6fe600ace3cf9c5ad11db76d38840839f874361732a8cc"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DCDAD08D63FE91",
|
||||||
|
"checksum": "f0ca8a2a38f45c627d0f2cf06f4f5c007bdc9ff5481a9568ecda1cf865903af2"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"etag": "0x8DCDACFCBFAF9B0",
|
||||||
|
"checksum": "9db871ba4c1aca00b150e5282c62fafcce9072db640787d52e3bb9a8651fba41"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DCDACF9855D355",
|
||||||
|
"checksum": "bbd835af26871b665392a5a49cf06a2a1be31da3c1ed04d783339d8d2fcf758c"
|
||||||
|
},
|
||||||
|
"aarch64_windows": {
|
||||||
|
"etag": "0x8DCDAD094623847",
|
||||||
|
"checksum": "856db245927997d9155ea728052f69b745b12e69baadecf068938b01fc9aefcf"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"2.5": {
|
"2.5": {
|
||||||
"version": "2.5.0"
|
"version": "2.5.0"
|
||||||
|
|||||||
29
manifests/just.json
generated
29
manifests/just.json
generated
@@ -19,10 +19,35 @@
|
|||||||
},
|
},
|
||||||
"license_markdown": "[CC0-1.0](https://github.com/casey/just/blob/master/LICENSE)",
|
"license_markdown": "[CC0-1.0](https://github.com/casey/just/blob/master/LICENSE)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "1.35.0"
|
"version": "1.36.0"
|
||||||
},
|
},
|
||||||
"1": {
|
"1": {
|
||||||
"version": "1.35.0"
|
"version": "1.36.0"
|
||||||
|
},
|
||||||
|
"1.36": {
|
||||||
|
"version": "1.36.0"
|
||||||
|
},
|
||||||
|
"1.36.0": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DCE1A04F0C3EB6",
|
||||||
|
"checksum": "bc7c9f377944f8de9cd0418b11d2955adebfa25a488c0b5e3dd2d2c0e9d732da"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DCE1A04CB475B9",
|
||||||
|
"checksum": "30aacf9cbf021c2ff36fff5a05c800360e2020e527916e1c0960452ef5a8568c"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DCE1A0A4C6557D",
|
||||||
|
"checksum": "7c0d56a07d51ddc4cdc2bd7d1e7e0223ada0281bc06bd482b8918102acf037fe"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"etag": "0x8DCE1A05631607E",
|
||||||
|
"checksum": "bb3886b15e2cbcb9c0eb19956297d36de4eaef45b89d3f5fa5d1fc4ed3b5b51d"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DCE1A046338E06",
|
||||||
|
"checksum": "e7a824c4d92cdea270b61474bd48e851aedc4c65f9c5245c12b32df6de9b536f"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"1.35": {
|
"1.35": {
|
||||||
"version": "1.35.0"
|
"version": "1.35.0"
|
||||||
|
|||||||
33
manifests/protoc.json
generated
33
manifests/protoc.json
generated
@@ -3,13 +3,40 @@
|
|||||||
"template": null,
|
"template": null,
|
||||||
"license_markdown": "[BSD-3-Clause](https://github.com/protocolbuffers/protobuf/blob/HEAD/LICENSE)",
|
"license_markdown": "[BSD-3-Clause](https://github.com/protocolbuffers/protobuf/blob/HEAD/LICENSE)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "3.28.1"
|
"version": "3.28.2"
|
||||||
},
|
},
|
||||||
"3": {
|
"3": {
|
||||||
"version": "3.28.1"
|
"version": "3.28.2"
|
||||||
},
|
},
|
||||||
"3.28": {
|
"3.28": {
|
||||||
"version": "3.28.1"
|
"version": "3.28.2"
|
||||||
|
},
|
||||||
|
"3.28.2": {
|
||||||
|
"x86_64_linux_gnu": {
|
||||||
|
"url": "https://github.com/protocolbuffers/protobuf/releases/download/v28.2/protoc-28.2-linux-x86_64.zip",
|
||||||
|
"etag": "0x8DCD8253BAB246F",
|
||||||
|
"checksum": "2febfd42b59ce93a28eb789019a470a3dd0449619bc04f84dad1333da261dec1"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"url": "https://github.com/protocolbuffers/protobuf/releases/download/v28.2/protoc-28.2-osx-x86_64.zip",
|
||||||
|
"etag": "0x8DCD8253BBEBD79",
|
||||||
|
"checksum": "232f07d12bf4806207a79ec2c7378301c52e6f2f7efdd21c0dd416f0bda103ec"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"url": "https://github.com/protocolbuffers/protobuf/releases/download/v28.2/protoc-28.2-win64.zip",
|
||||||
|
"etag": "0x8DCD8253BF1C95D",
|
||||||
|
"checksum": "4bde19271ed7cab9003570f28c6e4c4d71963eaf1211a86bf3bb25d9b895177a"
|
||||||
|
},
|
||||||
|
"aarch64_linux_gnu": {
|
||||||
|
"url": "https://github.com/protocolbuffers/protobuf/releases/download/v28.2/protoc-28.2-linux-aarch_64.zip",
|
||||||
|
"etag": "0x8DCD8253B447172",
|
||||||
|
"checksum": "91d8253cdc0f0f0fc51c2b69c80677996632f525ad84504bfa5b4ee38ad3e49c"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"url": "https://github.com/protocolbuffers/protobuf/releases/download/v28.2/protoc-28.2-osx-aarch_64.zip",
|
||||||
|
"etag": "0x8DCD8253B989B9A",
|
||||||
|
"checksum": "7bb048f52841789d9ec61983be0ce4c9e4fb3bd9a143462820ba9a3be0a03797"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"3.28.1": {
|
"3.28.1": {
|
||||||
"x86_64_linux_gnu": {
|
"x86_64_linux_gnu": {
|
||||||
|
|||||||
32
manifests/rclone.json
generated
32
manifests/rclone.json
generated
@@ -28,13 +28,39 @@
|
|||||||
},
|
},
|
||||||
"license_markdown": "[MIT](https://github.com/rclone/rclone/blob/master/COPYING)",
|
"license_markdown": "[MIT](https://github.com/rclone/rclone/blob/master/COPYING)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "1.68.0"
|
"version": "1.68.1"
|
||||||
},
|
},
|
||||||
"1": {
|
"1": {
|
||||||
"version": "1.68.0"
|
"version": "1.68.1"
|
||||||
},
|
},
|
||||||
"1.68": {
|
"1.68": {
|
||||||
"version": "1.68.0"
|
"version": "1.68.1"
|
||||||
|
},
|
||||||
|
"1.68.1": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DCDCB2BE40EEB1",
|
||||||
|
"checksum": "34f34743b1831523cd2e0aff74447b717e2d62fe1b598e91703899e0c0689568"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DCDCB37928251B",
|
||||||
|
"checksum": "d81e091571bc040282dab39d0cdee6b3215774de389469cd850c9803d6191de3"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DCDCB3ACDFDD3A",
|
||||||
|
"checksum": "35e550ea373d90ed65ac1e2202420923584ec0501cf143ae27bdcff580a7c51f"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"etag": "0x8DCDCB2D43CFABB",
|
||||||
|
"checksum": "bd8b4e0923239f80d3a25fe37bea09050038fa8fdbadacd44b8cef2a3944777d"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DCDCB380FC47C9",
|
||||||
|
"checksum": "38e7588e13c93ee710daa44bb798437eca7fd583d4e98d0bce6c685ff11f4152"
|
||||||
|
},
|
||||||
|
"aarch64_windows": {
|
||||||
|
"etag": "0x8DCDCB3B3D39CE3",
|
||||||
|
"checksum": "89fab75effaf3b921b76ac4f70367680be0ae1c5e1f12d767cc4be768603e511"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"1.68.0": {
|
"1.68.0": {
|
||||||
"x86_64_linux_musl": {
|
"x86_64_linux_musl": {
|
||||||
|
|||||||
82
manifests/release-plz.json
generated
82
manifests/release-plz.json
generated
@@ -22,10 +22,88 @@
|
|||||||
},
|
},
|
||||||
"license_markdown": "[MIT](https://github.com/MarcoIeni/release-plz/blob/main/LICENSE-MIT) OR [Apache-2.0](https://github.com/MarcoIeni/release-plz/blob/main/LICENSE-APACHE)",
|
"license_markdown": "[MIT](https://github.com/MarcoIeni/release-plz/blob/main/LICENSE-MIT) OR [Apache-2.0](https://github.com/MarcoIeni/release-plz/blob/main/LICENSE-APACHE)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "0.3.90"
|
"version": "0.3.93"
|
||||||
},
|
},
|
||||||
"0.3": {
|
"0.3": {
|
||||||
"version": "0.3.90"
|
"version": "0.3.93"
|
||||||
|
},
|
||||||
|
"0.3.93": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DCE17BE71F9456",
|
||||||
|
"checksum": "36c8b3b92f35c9bbb976057ec552ddd84d251af5c415eef219c5a9465c78975b"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DCE17C38BA9305",
|
||||||
|
"checksum": "a6bf80fc8d528402bfca854900b6b02acbe9ee5b1897808a1d93f06aa4b5b7f9"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DCE17CC0BA6B19",
|
||||||
|
"checksum": "f7b1d0b165580c17c3bac65d192104e73a678e6dbb88be172531e8bcb328fc4e"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"etag": "0x8DCE17BDD3A01C1",
|
||||||
|
"checksum": "456a57a209cd44354199a655e1166b701b4bed9758db3350a9b96064053025af"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DCE17C064789FD",
|
||||||
|
"checksum": "cd4fb75e72fa2c75929bfe61616e917b21e7da1ef47e9e2e7f17df130b115529"
|
||||||
|
},
|
||||||
|
"aarch64_windows": {
|
||||||
|
"etag": "0x8DCE17CC6DB4C35",
|
||||||
|
"checksum": "b652de84abbf6c716b3682d1c0caf2ef6359342c0d2da6d5bc1f487f31118772"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"0.3.92": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DCDF9AE116CF51",
|
||||||
|
"checksum": "89d6c0558b94b0d665ddb824fe90d7313a09d06e483d5faa8111ff1fcd7ed63a"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DCDF9B47E84F0F",
|
||||||
|
"checksum": "573c5179bcd2fcbdb89e64afd1e71d4d99821d3854bdd80772b5592185e6f9a7"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DCDF9BA29036B6",
|
||||||
|
"checksum": "af5cc4947c4373648fa377e57ef0646d227e4db98910205a94df5eed00d52436"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"etag": "0x8DCDF9AEC6615AC",
|
||||||
|
"checksum": "7925be36c1e005edaa2fa73dc476539f934a330559a283aa7d29becdeff3f2cd"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DCDF9B5A997446",
|
||||||
|
"checksum": "4a394a4cffcd6d210405971c7350da541a765bc164ae42983ca67efccfcbdbff"
|
||||||
|
},
|
||||||
|
"aarch64_windows": {
|
||||||
|
"etag": "0x8DCDF9BEAFF232D",
|
||||||
|
"checksum": "aa844fc516399be6157dc4c3bc77dfe4c1aa646774513269aa74601c67ff09b0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"0.3.91": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DCD75BDBB094AD",
|
||||||
|
"checksum": "241219d7f2ea6965b57e4054e9d28fa54049ea2846333507085a5d0cac6f3a57"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DCD75CBAB08094",
|
||||||
|
"checksum": "54282494b9c5590bc2bc1140e38a8d6546c55c6972cd74dfc7abcd12289eb26d"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DCD75C88E611C2",
|
||||||
|
"checksum": "e3064861b91c26ba6045c549f89f7770364a931f41c898163058b7a00fdae816"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"etag": "0x8DCD75BD1726EDE",
|
||||||
|
"checksum": "87b52f8502894b162e5730201c3de455d422535d26a25e974427f92a4a9c61cd"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DCD75C8CEA446A",
|
||||||
|
"checksum": "268b6b85dcefb353bc7c06ede51b24de4d00b47ba9e9f8d899631d5ece669fb7"
|
||||||
|
},
|
||||||
|
"aarch64_windows": {
|
||||||
|
"etag": "0x8DCD75CB2758463",
|
||||||
|
"checksum": "6e640c7649500db175e3077fdcb8ef3c1259af1869f51e2fc9d33e71c6562a02"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"0.3.90": {
|
"0.3.90": {
|
||||||
"x86_64_linux_musl": {
|
"x86_64_linux_musl": {
|
||||||
|
|||||||
26
manifests/sccache.json
generated
26
manifests/sccache.json
generated
@@ -24,10 +24,32 @@
|
|||||||
},
|
},
|
||||||
"license_markdown": "[Apache-2.0](https://github.com/mozilla/sccache/blob/main/LICENSE)",
|
"license_markdown": "[Apache-2.0](https://github.com/mozilla/sccache/blob/main/LICENSE)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "0.8.1"
|
"version": "0.8.2"
|
||||||
},
|
},
|
||||||
"0.8": {
|
"0.8": {
|
||||||
"version": "0.8.1"
|
"version": "0.8.2"
|
||||||
|
},
|
||||||
|
"0.8.2": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DCDF9C94069C6F",
|
||||||
|
"checksum": "ecda4ddc89a49f1ec6f35bdce5ecbf6f205b399a680d11119d4ce9f6d962104e"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DCDF9C9255A3FE",
|
||||||
|
"checksum": "fcbe1b76356f7183cee0b5bc150c0583abc01a5c42e9b2be94e9d17ed7dca3a4"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DCDF9C932BD8D8",
|
||||||
|
"checksum": "de5e9f66bb8a6bbdf0e28cb8a086a8d12699af796bf70bcd9dc40d80715bf9b8"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"etag": "0x8DCDF9C8FAD0AA4",
|
||||||
|
"checksum": "d4b6c04edf7ed687a50be0d3d899dca01bc3037dcf99f16bc46a7b9a76f78db9"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DCDF9C8E16337F",
|
||||||
|
"checksum": "32604da614ce679623a8de0d38eab91b87431d59f3344c5523c82e1b6e85ffc4"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"0.8.1": {
|
"0.8.1": {
|
||||||
"x86_64_linux_musl": {
|
"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)",
|
"license_markdown": "[Apache-2.0](https://github.com/anchore/syft/blob/main/LICENSE)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "1.12.2"
|
"version": "1.13.0"
|
||||||
},
|
},
|
||||||
"1": {
|
"1": {
|
||||||
"version": "1.12.2"
|
"version": "1.13.0"
|
||||||
|
},
|
||||||
|
"1.13": {
|
||||||
|
"version": "1.13.0"
|
||||||
|
},
|
||||||
|
"1.13.0": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DCDC9DCA20EA29",
|
||||||
|
"checksum": "4a664f0b6de1bb3cfebebcf8baea7560d3f4b7424130f1cc2075de746a3cc039"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DCDC9DCAD1E6F2",
|
||||||
|
"checksum": "b6778cdceed79eca793c17cff9f258cdfe906a5c2471d3710939d5dd2421a92e"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DCDC9DCAD0D6B0",
|
||||||
|
"checksum": "2baed62f6a866039fd934fc765b0094ffbf348acfd259841a58e14b141d25af5"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"etag": "0x8DCDC9DCA19518A",
|
||||||
|
"checksum": "1b878b55d7a2a9371d6e363794bd3adffc8d7fe75cd733b2f1f61c78214ddb97"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DCDC9DCACF51D0",
|
||||||
|
"checksum": "1900adc1401cfdd3bde9f39f49124ecd9b6f78f9983d81224ad4f419030b7185"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"1.12": {
|
"1.12": {
|
||||||
"version": "1.12.2"
|
"version": "1.12.2"
|
||||||
|
|||||||
25
manifests/typos.json
generated
25
manifests/typos.json
generated
@@ -16,10 +16,31 @@
|
|||||||
},
|
},
|
||||||
"license_markdown": "[MIT](https://github.com/crate-ci/typos/blob/master/LICENSE-MIT) OR [Apache-2.0](https://github.com/crate-ci/typos/blob/master/LICENSE-APACHE)",
|
"license_markdown": "[MIT](https://github.com/crate-ci/typos/blob/master/LICENSE-MIT) OR [Apache-2.0](https://github.com/crate-ci/typos/blob/master/LICENSE-APACHE)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "1.24.6"
|
"version": "1.25.0"
|
||||||
},
|
},
|
||||||
"1": {
|
"1": {
|
||||||
"version": "1.24.6"
|
"version": "1.25.0"
|
||||||
|
},
|
||||||
|
"1.25": {
|
||||||
|
"version": "1.25.0"
|
||||||
|
},
|
||||||
|
"1.25.0": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DCE1B94BAEE02E",
|
||||||
|
"checksum": "39f231d15dd4012328e412194e344fa9475462abee375192d4bd16ea18f1dcc6"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DCE1B94443927A",
|
||||||
|
"checksum": "56d57c69471089abf908fae75e758dae78ebfa9c0d9a5f081ef9d2ca435e73d1"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DCE1B9AEE8F42F",
|
||||||
|
"checksum": "c367dbd3e262474892908075bb6c123b3a95f13d32c96dacd1495acca50adad3"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DCE1B9674AF3BB",
|
||||||
|
"checksum": "0af1003c5d1968667947d7ec60658c00514ded2e25cc282091da94328bbff75e"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"1.24": {
|
"1.24": {
|
||||||
"version": "1.24.6"
|
"version": "1.24.6"
|
||||||
|
|||||||
52
manifests/wasmtime.json
generated
52
manifests/wasmtime.json
generated
@@ -24,7 +24,57 @@
|
|||||||
},
|
},
|
||||||
"license_markdown": "[Apache-2.0 WITH LLVM-exception](https://github.com/bytecodealliance/wasmtime/blob/main/LICENSE)",
|
"license_markdown": "[Apache-2.0 WITH LLVM-exception](https://github.com/bytecodealliance/wasmtime/blob/main/LICENSE)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "24.0.0"
|
"version": "25.0.1"
|
||||||
|
},
|
||||||
|
"25": {
|
||||||
|
"version": "25.0.1"
|
||||||
|
},
|
||||||
|
"25.0": {
|
||||||
|
"version": "25.0.1"
|
||||||
|
},
|
||||||
|
"25.0.1": {
|
||||||
|
"x86_64_linux_gnu": {
|
||||||
|
"etag": "0x8DCDCE18BBDE564",
|
||||||
|
"checksum": "3785b32b79fd7af4f12bf42c4e46debf48ec853fbcc4a097a3bd9728237fb3ef"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DCDCE18C974B30",
|
||||||
|
"checksum": "1e06ab357904272ecfbedc8f2b007ba45121ee66c8fe6958814ae31e918cbfe4"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DCDCE1900D718C",
|
||||||
|
"checksum": "2849c8d487d2c9ab83fb993f896f2b4fac7a7b8e8f3a6f3417b7b182c728e26c"
|
||||||
|
},
|
||||||
|
"aarch64_linux_gnu": {
|
||||||
|
"etag": "0x8DCDCE185DCD2E8",
|
||||||
|
"checksum": "35850d5ae8c9b882826f01cb7400995df6024821c0de7f61bd1a630453adc060"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DCDCE186BB3C20",
|
||||||
|
"checksum": "d5091035f7bc6499365331ba3d6c9a1c572f2d881fbf29eebbdf83993a20dd55"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"25.0.0": {
|
||||||
|
"x86_64_linux_gnu": {
|
||||||
|
"etag": "0x8DCD98AF8C1EF45",
|
||||||
|
"checksum": "45bec3345c8a579e99ec21d47ac738aeb82070422119d5e8879472266fe33caa"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DCD98AF99BA317",
|
||||||
|
"checksum": "7569460feb5377d0e7a5d56c080337ef622296c514bf921ec0e3d9fbec71e5dd"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DCD98AFC9D6B71",
|
||||||
|
"checksum": "094c5b49ee3ac234b4bb47ec26eca02c7193718eb55c6aa24ffd89fbdc0ada31"
|
||||||
|
},
|
||||||
|
"aarch64_linux_gnu": {
|
||||||
|
"etag": "0x8DCD98AF2EB5670",
|
||||||
|
"checksum": "9fbfa7048894c5649e3ec3178e2d6881cf4fc1f5ad3c7260510e3b8dd5900261"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DCD98AF3A0BB27",
|
||||||
|
"checksum": "19a183c9e1f2e9fc44387a5156e51a5380918904c22297b555154e33b62fa40f"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"24": {
|
"24": {
|
||||||
"version": "24.0.0"
|
"version": "24.0.0"
|
||||||
|
|||||||
@@ -40,6 +40,9 @@ glibc_pre_2_17_incompat=(
|
|||||||
musl_incompat=(
|
musl_incompat=(
|
||||||
"${glibc_pre_2_17_incompat[@]}"
|
"${glibc_pre_2_17_incompat[@]}"
|
||||||
)
|
)
|
||||||
|
win2019_gnu_incompat=(
|
||||||
|
cargo-spellcheck
|
||||||
|
)
|
||||||
|
|
||||||
incompat_tools=()
|
incompat_tools=()
|
||||||
case "${1:-}" in
|
case "${1:-}" in
|
||||||
@@ -51,9 +54,11 @@ case "${1:-}" in
|
|||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
echo "tool=$1"
|
echo "tool=$1"
|
||||||
exit 0
|
exit 1
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
runner="${2:-}"
|
||||||
|
bash="${3:-}"
|
||||||
case "$(uname -s)" in
|
case "$(uname -s)" in
|
||||||
Linux)
|
Linux)
|
||||||
host_os=linux
|
host_os=linux
|
||||||
@@ -92,7 +97,16 @@ case "$(uname -s)" in
|
|||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
Darwin) host_os=macos ;;
|
Darwin) host_os=macos ;;
|
||||||
MINGW* | MSYS* | CYGWIN* | Windows_NT) host_os=windows ;;
|
MINGW* | MSYS* | CYGWIN* | Windows_NT)
|
||||||
|
host_os=windows
|
||||||
|
case "${bash}" in
|
||||||
|
msys64 | cygwin)
|
||||||
|
if [[ "${runner}" == "windows-2019" ]]; then
|
||||||
|
incompat_tools+=("${win2019_gnu_incompat[@]}")
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
;;
|
||||||
*) bail "unrecognized OS type '$(uname -s)'" ;;
|
*) bail "unrecognized OS type '$(uname -s)'" ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
@@ -104,20 +118,19 @@ for manifest in tools/codegen/base/*.json; do
|
|||||||
continue
|
continue
|
||||||
fi
|
fi
|
||||||
case "${host_os}" in
|
case "${host_os}" in
|
||||||
linux*)
|
linux*) ;;
|
||||||
for incompat in ${incompat_tools[@]+"${incompat_tools[@]}"}; do
|
|
||||||
if [[ "${incompat}" == "${tool_name}" ]]; then
|
|
||||||
tool_name=''
|
|
||||||
break
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
;;
|
|
||||||
*)
|
*)
|
||||||
if [[ "$(jq -r ".platform.x86_64_${host_os}" "${manifest}")" == "null" ]]; then
|
if [[ "$(jq -r ".platform.x86_64_${host_os}" "${manifest}")" == "null" ]]; then
|
||||||
continue
|
continue
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
for incompat in ${incompat_tools[@]+"${incompat_tools[@]}"}; do
|
||||||
|
if [[ "${incompat}" == "${tool_name}" ]]; then
|
||||||
|
tool_name=''
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
done
|
||||||
if [[ -n "${tool_name}" ]]; then
|
if [[ -n "${tool_name}" ]]; then
|
||||||
if [[ "${version}" != "latest" ]]; then
|
if [[ "${version}" != "latest" ]]; then
|
||||||
latest_version=$(jq -r ".latest.version" "manifests/${tool_name}.json")
|
latest_version=$(jq -r ".latest.version" "manifests/${tool_name}.json")
|
||||||
@@ -154,9 +167,9 @@ esac
|
|||||||
# cargo-watch/watchexec-cli is supported by cargo-binstall (through quickinstall)
|
# cargo-watch/watchexec-cli is supported by cargo-binstall (through quickinstall)
|
||||||
case "${version}" in
|
case "${version}" in
|
||||||
latest) tools+=(cargo-watch watchexec-cli) ;;
|
latest) tools+=(cargo-watch watchexec-cli) ;;
|
||||||
major.minor.patch) tools+=(cargo-watch@8.1.1 watchexec-cli@1.20.5) ;;
|
major.minor.patch) tools+=(cargo-watch@8.5.2 watchexec-cli@2.1.2) ;;
|
||||||
major.minor) tools+=(cargo-watch@8.1 watchexec-cli@1.20) ;;
|
major.minor) tools+=(cargo-watch@8.5 watchexec-cli@2.1) ;;
|
||||||
major) tools+=(cargo-watch@8 watchexec-cli@1) ;;
|
major) tools+=(cargo-watch@8 watchexec-cli@2) ;;
|
||||||
*) exit 1 ;;
|
*) exit 1 ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user