Compare commits

...

31 Commits

Author SHA1 Message Date
Taiki Endo
a50413355c Release 2.49.14 2025-03-05 04:59:01 +09:00
Taiki Endo
469c5e22dd ci: Mark espup as glibc_pre_2_34_incompat
```
+ espup --version
espup: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33' not found (required by espup)
espup: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.32' not found (required by espup)
espup: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34' not found (required by espup)
```
2025-03-05 04:57:35 +09:00
Taiki Endo
073412b133 Update espup@latest to 0.14.1 2025-03-05 04:57:35 +09:00
Taiki Endo
970d55e3ce Release 2.49.13 2025-03-04 23:08:34 +09:00
Taiki Endo
041a7e385b Update trunk@latest to 0.21.8 2025-03-04 22:48:53 +09:00
Taiki Endo
94f6603fed Release 2.49.12 2025-03-04 22:39:19 +09:00
Taiki Endo
847ba7bddd Update cargo-tarpaulin@latest to 0.32.2 2025-03-04 13:22:10 +09:00
Taiki Endo
4c7a5f7d2c Update typos@latest to 1.30.1 2025-03-04 13:01:33 +09:00
Taiki Endo
a209ff0ce0 Release 2.49.11 2025-03-04 01:23:49 +09:00
Taiki Endo
d315c0ebc1 Update cargo-tarpaulin@latest to 0.32.1 2025-03-04 00:32:47 +09:00
Taiki Endo
3c8fc6eaa5 Release 2.49.10 2025-03-02 16:39:19 +09:00
Taiki Endo
916a512474 tools: Update scripts 2025-03-02 16:32:48 +09:00
Taiki Endo
8777561bf0 Update release-plz@latest to 0.3.124 2025-03-02 09:32:03 +09:00
Taiki Endo
0b63bc859f Release 2.49.9 2025-03-01 13:49:10 +09:00
Taiki Endo
366fcd03e0 Update typos@latest to 1.30.0 2025-03-01 13:46:15 +09:00
Taiki Endo
dccf3df6e0 Release 2.49.8 2025-03-01 00:24:02 +09:00
Taiki Endo
a1324e40ca Update cargo-binstall@latest to 1.11.2 2025-03-01 00:12:23 +09:00
Taiki Endo
f0776fc234 Update cargo-audit@latest to 0.21.2 2025-02-28 21:15:42 +09:00
Taiki Endo
ada1a57be8 Release 2.49.7 2025-02-27 21:24:10 +09:00
Taiki Endo
afc83a47c0 Update cargo-deny@latest to 0.18.1 2025-02-27 18:14:42 +09:00
Taiki Endo
3fc1605ecf Release 2.49.6 2025-02-27 10:48:44 +09:00
Taiki Endo
85ca29eaeb Update cargo-lambda@latest to 1.7.0 2025-02-27 09:31:24 +09:00
Taiki Endo
93a6e1f102 ci: Open update manifest PR also from workflow_dispatch 2025-02-27 02:40:35 +09:00
Taiki Endo
019e221005 Release 2.49.5 2025-02-26 03:53:24 +09:00
Taiki Endo
624ef34326 Update wasmtime@latest to 30.0.2 2025-02-26 03:52:39 +09:00
Taiki Endo
c984ca7702 Update release-plz@latest to 0.3.123 2025-02-26 03:16:13 +09:00
Taiki Endo
6c595e9f7b Release 2.49.4 2025-02-26 00:45:14 +09:00
Taiki Endo
892838bca9 Update typos@latest to 1.29.10 2025-02-26 00:18:52 +09:00
Taiki Endo
7ea888af71 Release 2.49.3 2025-02-25 09:32:31 +09:00
Taiki Endo
d65f93a644 Update wash@latest to 0.39.0 2025-02-25 09:24:38 +09:00
Taiki Endo
7795204009 Update cargo-nextest@latest to 0.9.92 2025-02-25 09:24:38 +09:00
17 changed files with 454 additions and 58 deletions

View File

@@ -52,7 +52,7 @@ jobs:
- name: Handle diff
id: diff
run: tools/ci/manifest.sh
if: github.repository_owner == 'taiki-e' && (github.event_name == 'schedule' || github.event_name == 'push' && github.ref == 'refs/heads/main')
if: github.repository_owner == 'taiki-e' && (github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || github.event_name == 'push' && github.ref == 'refs/heads/main')
- run: git add -N . && git -c color.ui=always diff --exit-code
- id: create-pull-request
uses: peter-evans/create-pull-request@v7
@@ -64,16 +64,16 @@ jobs:
This will be auto-merged when CI has passed because this is an auto-generated PR in a defined format and is usually considered no additional review is required.
branch: update-manifest
token: ${{ secrets.CREATE_PR_TOKEN }}
if: github.repository_owner == 'taiki-e' && (github.event_name == 'schedule' || github.event_name == 'push' && github.ref == 'refs/heads/main') && steps.diff.outputs.success == 'false'
if: github.repository_owner == 'taiki-e' && (github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || github.event_name == 'push' && github.ref == 'refs/heads/main') && steps.diff.outputs.success == 'false'
- name: Enable auto-merge for auto-generated PR
run: gh pr merge --rebase --auto "${PR_NUMBER:?}"
env:
GITHUB_TOKEN: ${{ secrets.CREATE_PR_TOKEN }}
PR_NUMBER: ${{ steps.create-pull-request.outputs.pull-request-number }}
if: github.repository_owner == 'taiki-e' && (github.event_name == 'schedule' || github.event_name == 'push' && github.ref == 'refs/heads/main') && steps.diff.outputs.success == 'false' && steps.create-pull-request.outputs.pull-request-operation == 'created'
if: github.repository_owner == 'taiki-e' && (github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || github.event_name == 'push' && github.ref == 'refs/heads/main') && steps.diff.outputs.success == 'false' && steps.create-pull-request.outputs.pull-request-operation == 'created'
- name: Approve auto-generated PR for auto-merge
run: gh pr review --approve "${PR_NUMBER:?}"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PR_NUMBER: ${{ steps.create-pull-request.outputs.pull-request-number }}
if: github.repository_owner == 'taiki-e' && (github.event_name == 'schedule' || github.event_name == 'push' && github.ref == 'refs/heads/main') && steps.diff.outputs.success == 'false' && (steps.create-pull-request.outputs.pull-request-operation == 'created' || steps.create-pull-request.outputs.pull-request-operation == 'updated')
if: github.repository_owner == 'taiki-e' && (github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || github.event_name == 'push' && github.ref == 'refs/heads/main') && steps.diff.outputs.success == 'false' && (steps.create-pull-request.outputs.pull-request-operation == 'created' || steps.create-pull-request.outputs.pull-request-operation == 'updated')

View File

@@ -10,6 +10,62 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com
## [Unreleased]
## [2.49.14] - 2025-03-04
- Update `espup@latest` to 0.14.1.
## [2.49.13] - 2025-03-04
- Update `trunk@latest` to 0.21.8.
## [2.49.12] - 2025-03-04
- Update `cargo-tarpaulin@latest` to 0.32.2.
- Update `typos@latest` to 1.30.1.
## [2.49.11] - 2025-03-03
- Update `cargo-tarpaulin@latest` to 0.32.1.
## [2.49.10] - 2025-03-02
- Update `release-plz@latest` to 0.3.124.
## [2.49.9] - 2025-03-01
- Update `typos@latest` to 1.30.0.
## [2.49.8] - 2025-02-28
- Update `cargo-binstall@latest` to 1.11.2.
- Update `cargo-audit@latest` to 0.21.2.
## [2.49.7] - 2025-02-27
- Update `cargo-deny@latest` to 0.18.1.
## [2.49.6] - 2025-02-27
- Update `cargo-lambda@latest` to 1.7.0.
## [2.49.5] - 2025-02-25
- Update `wasmtime@latest` to 30.0.2.
- Update `release-plz@latest` to 0.3.123.
## [2.49.4] - 2025-02-25
- Update `typos@latest` to 1.29.10.
## [2.49.3] - 2025-02-25
- Update `wash@latest` to 0.39.0.
- Update `cargo-nextest@latest` to 0.9.92.
## [2.49.2] - 2025-02-25
- Update `sccache@latest` to 0.10.0.
@@ -3568,7 +3624,19 @@ Note: This release is considered a breaking change because installing on version
Initial release
[Unreleased]: https://github.com/taiki-e/install-action/compare/v2.49.2...HEAD
[Unreleased]: https://github.com/taiki-e/install-action/compare/v2.49.14...HEAD
[2.49.14]: https://github.com/taiki-e/install-action/compare/v2.49.13...v2.49.14
[2.49.13]: https://github.com/taiki-e/install-action/compare/v2.49.12...v2.49.13
[2.49.12]: https://github.com/taiki-e/install-action/compare/v2.49.11...v2.49.12
[2.49.11]: https://github.com/taiki-e/install-action/compare/v2.49.10...v2.49.11
[2.49.10]: https://github.com/taiki-e/install-action/compare/v2.49.9...v2.49.10
[2.49.9]: https://github.com/taiki-e/install-action/compare/v2.49.8...v2.49.9
[2.49.8]: https://github.com/taiki-e/install-action/compare/v2.49.7...v2.49.8
[2.49.7]: https://github.com/taiki-e/install-action/compare/v2.49.6...v2.49.7
[2.49.6]: https://github.com/taiki-e/install-action/compare/v2.49.5...v2.49.6
[2.49.5]: https://github.com/taiki-e/install-action/compare/v2.49.4...v2.49.5
[2.49.4]: https://github.com/taiki-e/install-action/compare/v2.49.3...v2.49.4
[2.49.3]: https://github.com/taiki-e/install-action/compare/v2.49.2...v2.49.3
[2.49.2]: https://github.com/taiki-e/install-action/compare/v2.49.1...v2.49.2
[2.49.1]: https://github.com/taiki-e/install-action/compare/v2.49.0...v2.49.1
[2.49.0]: https://github.com/taiki-e/install-action/compare/v2.48.22...v2.49.0

View File

@@ -20,10 +20,28 @@
},
"license_markdown": "[Apache-2.0](https://github.com/rustsec/rustsec/blob/HEAD/cargo-audit/LICENSE-APACHE) OR [MIT](https://github.com/rustsec/rustsec/blob/HEAD/cargo-audit/LICENSE-MIT)",
"latest": {
"version": "0.21.1"
"version": "0.21.2"
},
"0.21": {
"version": "0.21.1"
"version": "0.21.2"
},
"0.21.2": {
"x86_64_linux_musl": {
"etag": "0x8DD57EB7FBC973F",
"checksum": "422912aa851458bc9bf37a458b75890cb5a4e2a7e5216dcee7df91507fc594d9"
},
"x86_64_macos": {
"etag": "0x8DD57EB6E096D56",
"checksum": "35bb991a09591ace872c86210931875dca013a53400eddb75ff2883e00b8eb67"
},
"x86_64_windows": {
"etag": "0x8DD57EBD7A4AB19",
"checksum": "9499b234149962c03f2e4d089ecc756c598d8fee6531f76c719a47feaff7468e"
},
"aarch64_linux_gnu": {
"etag": "0x8DD57EB8E4432AF",
"checksum": "f29959b2792bb0864db5db1d2facf16c2f8bc3be323ca57cee9609147cd6f64d"
}
},
"0.21.1": {
"x86_64_linux_musl": {

View File

@@ -22,32 +22,32 @@
},
"license_markdown": "[GPL-3.0](https://github.com/cargo-bins/cargo-binstall/blob/HEAD/crates/bin/LICENSE)",
"latest": {
"version": "1.11.1"
"version": "1.11.2"
},
"1.11.1": {
"1.11.2": {
"x86_64_linux_musl": {
"etag": "0x8DD53AD432C0E1E",
"checksum": "e4ee181b2d8fc814b340f5da849dd67acfc985b18c92bcd654c9d223d205e4d5"
"etag": "0x8DD57FA7BB48549",
"checksum": "ea9ce8f0b4139aaa7f8cce03fb0e54f206a6a9d0b8e2e586dfae99d4a92c3fa0"
},
"x86_64_macos": {
"etag": "0x8DD53AD12F83C0F",
"checksum": "fca395de3047f7868c3b57d7563a8342b2b446b0c6839509527fff56e2156068"
"etag": "0x8DD57FA5478A8DB",
"checksum": "7fac7c408bc001f211dfc2bd6cd614e7dd5022087f134a37e545dceb760e19f8"
},
"x86_64_windows": {
"etag": "0x8DD53AE25C0C75B",
"checksum": "b092d9f1dea240fb7269e25bd097575fd8bd7b0acd9b44cf5319e5a52adb9952"
"etag": "0x8DD57FB7B0E7292",
"checksum": "abae034a133e89c6ad532e2d2c473cf3558b70072ec366e0933f6b3c275dfbec"
},
"aarch64_linux_musl": {
"etag": "0x8DD53ACE9F477BA",
"checksum": "096f2d7afb87856f58a8c95a5a99130b60ad2763f38378c62b1ffa3ec8e93c1f"
"etag": "0x8DD57FA1DF05862",
"checksum": "e346df04a676ddfe46f4b900507d7d844a472182dd0c849c582b786be971be6a"
},
"aarch64_macos": {
"etag": "0x8DD53AD22027CC8",
"checksum": "2837ffc3ad798eec1629638ed43ca85a52abf9d0db5ab38d498d803fd65c38c3"
"etag": "0x8DD57FB2B5DC5EC",
"checksum": "933a58e3b12e35564d69e0d5d67b93f9417e913af23f39d3567d76cb0140ac9f"
},
"aarch64_windows": {
"etag": "0x8DD53ADFC1A99F6",
"checksum": "d675ea21614f99482569f4bae2a24cd312b98755c8f3708766baa7cb502b640b"
"etag": "0x8DD57FB28B74CA4",
"checksum": "902634c196f849d62b2edf84e5e6f80aefe89cd4f432f179cd3a1a0a89a93fb6"
}
}
}

View File

@@ -24,10 +24,32 @@
},
"license_markdown": "[MIT](https://github.com/EmbarkStudios/cargo-deny/blob/main/LICENSE-MIT) OR [Apache-2.0](https://github.com/EmbarkStudios/cargo-deny/blob/main/LICENSE-APACHE)",
"latest": {
"version": "0.18.0"
"version": "0.18.1"
},
"0.18": {
"version": "0.18.0"
"version": "0.18.1"
},
"0.18.1": {
"x86_64_linux_musl": {
"etag": "0x8DD56FE3AFCABBF",
"checksum": "0ea3ced1541ae7a06487dbe723a95d809dbe964891fb5ec704227bd8e7fc33e0"
},
"x86_64_macos": {
"etag": "0x8DD56FE37FF0016",
"checksum": "27158590309c0198b713c79500f2ba092375cbc75bde7f6ff576ac57b4836e8b"
},
"x86_64_windows": {
"etag": "0x8DD56FEBED58597",
"checksum": "a2f0146ca2e15a93a796ee5e5d364b0eed8a8ea6e959dc32dba1b36916e2f796"
},
"aarch64_linux_musl": {
"etag": "0x8DD56FE49C48325",
"checksum": "564241cea4948775e91eaa96899c1259e3b5fd678366d2f626950dc686aae4fb"
},
"aarch64_macos": {
"etag": "0x8DD56FE330F2FF5",
"checksum": "12ffa1faeaaff6fa37bf24cff24acd2d6dc95b47c5d339dd337ceb930ed7286e"
}
},
"0.18.0": {
"x86_64_linux_musl": {

View File

@@ -20,10 +20,35 @@
},
"license_markdown": "[MIT](https://github.com/cargo-lambda/cargo-lambda/blob/main/LICENSE)",
"latest": {
"version": "1.6.3"
"version": "1.7.0"
},
"1": {
"version": "1.6.3"
"version": "1.7.0"
},
"1.7": {
"version": "1.7.0"
},
"1.7.0": {
"x86_64_linux_musl": {
"etag": "0x8DD56BF9E11BA5C",
"checksum": "f5166a3f382056d819b90974a97c71db7f5bf84c5078edc94f79b143886cdf90"
},
"x86_64_macos": {
"etag": "0x8DD56BF9EA60050",
"checksum": "7b188fef3c9476958cdeca463d649165adcae782b8ef88c43b3d87c392a94cd1"
},
"x86_64_windows": {
"etag": "0x8DD56BF9F5D3743",
"checksum": "e3e1c5aee7d34d6d2b12cf833ef549baeb9c4d67e3bd3bc89841c8dc01bc5c83"
},
"aarch64_linux_musl": {
"etag": "0x8DD56BFA000AE63",
"checksum": "4f13f82823a2d06bc28d0c7f38dc398514a4279866ba8c1e543e30a24a762891"
},
"aarch64_macos": {
"etag": "0x8DD56BFA09FE47E",
"checksum": "d9dc72ab5b4ef8fca16bcd24b21072c4f5397b233b4a05e85e10a01bcd0b6920"
}
},
"1.6": {
"version": "1.6.3"

View File

@@ -19,10 +19,33 @@
},
"license_markdown": "[Apache-2.0](https://github.com/nextest-rs/nextest/blob/main/LICENSE-APACHE) OR [MIT](https://github.com/nextest-rs/nextest/blob/main/LICENSE-MIT)",
"latest": {
"version": "0.9.91"
"version": "0.9.92"
},
"0.9": {
"version": "0.9.91"
"version": "0.9.92"
},
"0.9.92": {
"previous_stable_version": "0.9.91",
"x86_64_linux_gnu": {
"etag": "0x8DD552945447848",
"checksum": "7d8fabc1b012075aab1b77c9462670e5ea34f9e40c6cf2c12a2ec2f9ee32bf20"
},
"x86_64_linux_musl": {
"etag": "0x8DD55296F1AEA89",
"checksum": "49e0727163248c394f9d1860da0f3eceff7ff2dbfd01da1a1ce93d4e46870896"
},
"x86_64_macos": {
"etag": "0x8DD55295BB83B68",
"checksum": "9490f380ea0568d179423bb5028955f91690e58051a95be0eb15f0119bc3df7a"
},
"x86_64_windows": {
"etag": "0x8DD5529B6381BC4",
"checksum": "e07391ea2bda51cb2ff26d536061723c7ea9e14adc69cd2ab9de44019bae7b03"
},
"aarch64_linux_gnu": {
"etag": "0x8DD55293D4A0C2F",
"checksum": "6adc85b7ffebe5bc3c4f30127c047d4766f65ddca906e12731591ea1cc81e995"
}
},
"0.9.91": {
"previous_stable_version": "0.9.90",

View File

@@ -19,10 +19,54 @@
},
"license_markdown": "[MIT](https://github.com/xd009642/tarpaulin/blob/develop/LICENSE-MIT) OR [Apache-2.0](https://github.com/xd009642/tarpaulin/blob/develop/LICENSE-APACHE)",
"latest": {
"version": "0.32.0"
"version": "0.32.2"
},
"0.32": {
"version": "0.32.0"
"version": "0.32.2"
},
"0.32.2": {
"x86_64_linux_musl": {
"etag": "0x8DD5AD0E28D64AF",
"checksum": "83c305896bccf696bc424426b63a02ef3c6414e72f20d824b2ac434df07c9ea9"
},
"x86_64_macos": {
"etag": "0x8DD5AD0D6C63D45",
"checksum": "197b7fb217f12aa9cab066d542c483165dc400841fd283934d39539b56babfd3"
},
"x86_64_windows": {
"etag": "0x8DD5AD11BA32CC0",
"checksum": "c93147d4cd5d656692ccd06b7c7089baed0950183f69dedb0ecb2574c5815ec6"
},
"aarch64_linux_musl": {
"etag": "0x8DD5AD0CBCFF9EC",
"checksum": "2995efb1bbc0ac35cfda172e9edd424e6a41ab6d8ec85809c63a933dd0eaf18a"
},
"aarch64_macos": {
"etag": "0x8DD5AD082D1AD64",
"checksum": "b675e79d5a9f8e5258cd3ec2cfaebb0ec3cd9189d896b83c89aa00c62d6cb87b"
}
},
"0.32.1": {
"x86_64_linux_musl": {
"etag": "0x8DD5A4E0A079E5A",
"checksum": "e899247e778c611d3448a42f87b2cf116444ed7ab1c69032cf0ead69a8b9f712"
},
"x86_64_macos": {
"etag": "0x8DD5A4DD8DC704A",
"checksum": "1c34f7fb55eda4d9a5d69c26b760d88985d14e2fbb0eb3cf8ad447751926e361"
},
"x86_64_windows": {
"etag": "0x8DD5A4E29586F6B",
"checksum": "510d6824da926ba6a476cd7ab72918852cc6ecd75efaf91ff5f239881147b444"
},
"aarch64_linux_musl": {
"etag": "0x8DD5A4DC29EA205",
"checksum": "6b68979758c5092d2d0b309429236e0eb2040327f3ea71a08eeb9e9a2fda7444"
},
"aarch64_macos": {
"etag": "0x8DD5A4DA0D5FC6D",
"checksum": "c799620344870afb73f653b361302e4419c74fc1191dda4a37ae9fb7c94b1fab"
}
},
"0.32.0": {
"x86_64_linux_musl": {

26
manifests/espup.json generated
View File

@@ -19,10 +19,32 @@
},
"license_markdown": "[MIT](https://github.com/esp-rs/espup/blob/main/LICENSE-MIT) OR [Apache-2.0](https://github.com/esp-rs/espup/blob/main/LICENSE-APACHE)",
"latest": {
"version": "0.14.0"
"version": "0.14.1"
},
"0.14": {
"version": "0.14.0"
"version": "0.14.1"
},
"0.14.1": {
"x86_64_linux_gnu": {
"etag": "0x8DD5B2E6ED160EF",
"checksum": "4ff88de902f2e7fea90bc2413f37ed6664f7fe6eb1e22008258e2c2fcda1193f"
},
"x86_64_macos": {
"etag": "0x8DD5B2E3AC70EF0",
"checksum": "8009e8769f8ce5a34363191af8577967e61b7fb1efdc7a12d69b0d7a9861313c"
},
"x86_64_windows": {
"etag": "0x8DD5B2E66D2424A",
"checksum": "89345763a85db96a660e28d4e5c4e210f478776902b3f1030b5798998d83934e"
},
"aarch64_linux_gnu": {
"etag": "0x8DD5B2E4CF0E0C6",
"checksum": "8dbff145143259dbb1f1b2928008be6e0d9b5ada7d7969579f08132a521d9526"
},
"aarch64_macos": {
"etag": "0x8DD5B2E310B430A",
"checksum": "3cd9664e8c04b0c444b118633453b2387584c9fa6f24b96fb4c7fcaedda8309f"
}
},
"0.14.0": {
"x86_64_linux_gnu": {

View File

@@ -22,10 +22,62 @@
},
"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.122"
"version": "0.3.124"
},
"0.3": {
"version": "0.3.122"
"version": "0.3.124"
},
"0.3.124": {
"x86_64_linux_musl": {
"etag": "0x8DD591CA47B707F",
"checksum": "ac10207f8ef64845e977416071d4900e3779fc3eec213f689e3ba8f3bb0c51de"
},
"x86_64_macos": {
"etag": "0x8DD591D0348A2B0",
"checksum": "6dc32a6fb5b49a40c36aeb08ed354fb26676d4a813d9ad7262deab06b18dd72a"
},
"x86_64_windows": {
"etag": "0x8DD591D5A95DA07",
"checksum": "a755954c890c9af762e94382dcefc660ff3549293775b557f1cb80cc01f17829"
},
"aarch64_linux_musl": {
"etag": "0x8DD591CADD86EA6",
"checksum": "6327524745912009667a8581cd9d1ce582da36f37a85dd2b5bf177947b604c42"
},
"aarch64_macos": {
"etag": "0x8DD591D30AB7553",
"checksum": "51fbc6247520c0c075d98946c7af68dab464c5f0c9e9911a173ef456f434d90e"
},
"aarch64_windows": {
"etag": "0x8DD591D785B5BD9",
"checksum": "6c291bc66f57ef749d47593f84777f7f4555c249081f8083fbdd32f6a9c5cb6c"
}
},
"0.3.123": {
"x86_64_linux_musl": {
"etag": "0x8DD55B71CC7C6AD",
"checksum": "19d590704d7560f5d2acea40828a8a9a80bf2a931a61c8f75698e6e91912e163"
},
"x86_64_macos": {
"etag": "0x8DD55B759679238",
"checksum": "c20ad8124fdc8ef79dde10637b968a801ea6c20c93aa74bf6ff29bdf447e1815"
},
"x86_64_windows": {
"etag": "0x8DD55B7C1CF5CA5",
"checksum": "590bfae52c96f88422e92d1ce27f19705c10184057dddd02647649d8b34659bc"
},
"aarch64_linux_musl": {
"etag": "0x8DD55B7248F236F",
"checksum": "718fba2a45c87b8ba06b49070670b42f9d9dbeaf9dd7ef5b15fb104e606a3156"
},
"aarch64_macos": {
"etag": "0x8DD55B7745F658C",
"checksum": "377d1a9c8408e193b97105127dece36d16f9a1401b56642f539ff0b53130c167"
},
"aarch64_windows": {
"etag": "0x8DD55B7B12E1D1D",
"checksum": "13ba4474f422ac75be9099ab0bc754d22911428dc974109fc92beac8b02f3d51"
}
},
"0.3.122": {
"x86_64_linux_musl": {

26
manifests/trunk.json generated
View File

@@ -19,10 +19,32 @@
},
"license_markdown": "[MIT](https://github.com/trunk-rs/trunk/blob/main/LICENSE-MIT) OR [Apache-2.0](https://github.com/trunk-rs/trunk/blob/main/LICENSE-APACHE)",
"latest": {
"version": "0.21.7"
"version": "0.21.8"
},
"0.21": {
"version": "0.21.7"
"version": "0.21.8"
},
"0.21.8": {
"x86_64_linux_musl": {
"etag": "0x8DD5B1F56C4ADFF",
"checksum": "3c11e08c37a06e707db364be01f6d6568082ff5470e38565bfed21e45b742b8e"
},
"x86_64_macos": {
"etag": "0x8DD5B1F565DD3FD",
"checksum": "03404c0036561a38421b67ffd596a19868b96d9d34228d17e367005aebfa1070"
},
"x86_64_windows": {
"etag": "0x8DD5B1F56A892EA",
"checksum": "deb0db2a660b8e9ea3064a3862822e099fd01be06424d3125dbf917382195131"
},
"aarch64_linux_musl": {
"etag": "0x8DD5B1F5633234E",
"checksum": "afc72ddbc526d2a793949e336a3811f65dfbfdd5d06a948e44b36c473e219ee9"
},
"aarch64_macos": {
"etag": "0x8DD5B1F562D8444",
"checksum": "934e2fba770cfc20b4e3498e35fbe8a03b0e6e60580cdc36eb070002834bc208"
}
},
"0.21.7": {
"x86_64_linux_musl": {

63
manifests/typos.json generated
View File

@@ -16,13 +16,70 @@
},
"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": {
"version": "1.29.9"
"version": "1.30.1"
},
"1": {
"version": "1.29.9"
"version": "1.30.1"
},
"1.30": {
"version": "1.30.1"
},
"1.30.1": {
"x86_64_linux_musl": {
"etag": "0x8DD5AC2CE049C35",
"checksum": "6a94916281056c53a22f6ec668df236c2a33142d18adcfdf17c45eba3bd57f6c"
},
"x86_64_macos": {
"etag": "0x8DD5AC3131437CF",
"checksum": "a0c915dbaf21e1c5d80fcf9924cea44c917e1423c7f88d6521dc83a9e6c23e1b"
},
"x86_64_windows": {
"etag": "0x8DD5AC388693F7F",
"checksum": "4f2fc7fc2001cf34a7bbc03e232cbdceed8963ab9250c18bc3d819c46d7a0056"
},
"aarch64_macos": {
"etag": "0x8DD5AC30E280C31",
"checksum": "9cf515928d1cbf5412127548b1cb723f2971c4f26265fcea738ee14f1c3bc115"
}
},
"1.30.0": {
"x86_64_linux_musl": {
"etag": "0x8DD586CA6610BB1",
"checksum": "701b69e8fb23ee6f42338537523927113063cf239c3e775c8794ea7866cdb1a8"
},
"x86_64_macos": {
"etag": "0x8DD586C88AE8FA7",
"checksum": "9c59d34978d8aa1b4b546bbdc251ea9b43a0d71479619de092552709c01ed857"
},
"x86_64_windows": {
"etag": "0x8DD586CD7D654FE",
"checksum": "ca2f1620393ec2dfd62668ca7d9e6753443582aedaf46ab1da154a012eaa9a31"
},
"aarch64_macos": {
"etag": "0x8DD586C9BCC2DE2",
"checksum": "dbb1ff5c308f6328efb6f2c9d60d84b0e3a8bda963f63ecda5c62af1765902e1"
}
},
"1.29": {
"version": "1.29.9"
"version": "1.29.10"
},
"1.29.10": {
"x86_64_linux_musl": {
"etag": "0x8DD55AC1E75B717",
"checksum": "853d001535396e52b1c4b335cd4a57975dd70b68ef80a2e630365c6d5a2e9236"
},
"x86_64_macos": {
"etag": "0x8DD55AC0C8BFA3F",
"checksum": "fe270e559968fdf60bdec32e5de474689e761617c0823676e87a1f9780662ed2"
},
"x86_64_windows": {
"etag": "0x8DD55AC5A390B2C",
"checksum": "795daf8175179d2b1ab992fa3d5c45bae6818d07b62b2f82a664a4787eb02326"
},
"aarch64_macos": {
"etag": "0x8DD55AC2283CA7B",
"checksum": "789537a84b40034cde80637baf989e6d3866f41155e16c22659d9ca929015348"
}
},
"1.29.9": {
"x86_64_linux_musl": {

27
manifests/wash.json generated
View File

@@ -19,7 +19,32 @@
},
"license_markdown": "[Apache-2.0](https://github.com/wasmCloud/wasmCloud/blob/main/LICENSE)",
"latest": {
"version": "0.38.0"
"version": "0.39.0"
},
"0.39": {
"version": "0.39.0"
},
"0.39.0": {
"x86_64_linux_musl": {
"etag": "0x8DD550CA196B8BA",
"checksum": "7cfc3a7c62db1cffa93c92c8f42be9fb10525cde1354e38531508c7500170cf8"
},
"x86_64_macos": {
"etag": "0x8DD550CA189A812",
"checksum": "b96c77148758fb3c8ae74f94f13c3e95a526c592d125ae61d3a6d36bc438f21c"
},
"x86_64_windows": {
"etag": "0x8DD550CA1730540",
"checksum": "1ad7928bf88e3828409921026329af2ecfd86c792322171a9bed8e260127b8e8"
},
"aarch64_linux_musl": {
"etag": "0x8DD550CA185B4ED",
"checksum": "279efdd262c9ea25a21b6f9b89eec67aae6583776b4f99e8c72fc3a15ce848c0"
},
"aarch64_macos": {
"etag": "0x8DD550CA1825D4D",
"checksum": "7805d1c2a6b7b76181329737555bd9a70cc6b006ea67de81d97ce2d5a40c5d3c"
}
},
"0.38": {
"version": "0.38.0"

View File

@@ -28,13 +28,39 @@
},
"license_markdown": "[Apache-2.0 WITH LLVM-exception](https://github.com/bytecodealliance/wasmtime/blob/main/LICENSE)",
"latest": {
"version": "30.0.1"
"version": "30.0.2"
},
"30": {
"version": "30.0.1"
"version": "30.0.2"
},
"30.0": {
"version": "30.0.1"
"version": "30.0.2"
},
"30.0.2": {
"x86_64_linux_gnu": {
"etag": "0x8DD55CAB43B7C70",
"checksum": "7f8ac87e40cee0987a5e0a1918a4330fd42e984400e2ec3080ff019ba254e788"
},
"x86_64_macos": {
"etag": "0x8DD55CAB545A62E",
"checksum": "610d054fcabb4902f788e45afb7434ce9264277c5ccae24b46292602c4bb4146"
},
"x86_64_windows": {
"etag": "0x8DD55CAB9128AEE",
"checksum": "bd32eba62ba4f2978bd0aecc95d3742b8b7101b806cf7de8c4b62c1fbd7a8017"
},
"aarch64_linux_gnu": {
"etag": "0x8DD55CAA8387AC8",
"checksum": "197c5c8c4debc3394ba1e5b1193bfd0acb64a97d1dbcbe52d15192d12dc796ee"
},
"aarch64_macos": {
"etag": "0x8DD55CAA910D029",
"checksum": "accbbadb4891c8c623dd315a28ebb0c3764b0863bc09f99031fedf7e037ab253"
},
"aarch64_windows": {
"etag": "0x8DD55CAAB1AA83F",
"checksum": "0948bb53352b76077355f96c948a208efa5d6f84efe67610fd5a49230d722bbe"
}
},
"30.0.1": {
"x86_64_linux_gnu": {

View File

@@ -14,6 +14,7 @@ glibc_pre_2_35_incompat=(
glibc_pre_2_34_incompat=(
"${glibc_pre_2_35_incompat[@]}"
cargo-spellcheck
espup
wait-for-them
xbuild
)
@@ -21,7 +22,6 @@ glibc_pre_2_34_incompat=(
glibc_pre_2_31_incompat=(
"${glibc_pre_2_34_incompat[@]}"
cargo-sort
espup
)
# version `GLIBC_2.28' not found
glibc_pre_2_28_incompat=(

View File

@@ -117,18 +117,14 @@ fi
set -x
git tag "${tag}"
retry git push origin main
retry git push origin --tags
retry git push origin refs/heads/main
retry git push origin refs/tags/"${tag}"
major_version_tag="v${version%%.*}"
git checkout -b "${major_version_tag}"
retry git push origin refs/heads/"${major_version_tag}"
if git --no-pager tag | grep -Eq "^${major_version_tag}$"; then
git tag -d "${major_version_tag}"
retry git push --delete origin refs/tags/"${major_version_tag}"
fi
git tag "${major_version_tag}"
retry git push origin --tags
git tag -f "${major_version_tag}"
retry git push origin -f refs/tags/"${major_version_tag}"
git checkout main
git branch -d "${major_version_tag}"
@@ -150,12 +146,8 @@ for tool in "${tools[@]}"; do
git add action.yml
git commit -m "${tool}"
retry git push origin -f refs/heads/"${tool}"
if git --no-pager tag | grep -Eq "^${tool}$"; then
git tag -d "${tool}"
retry git push --delete origin refs/tags/"${tool}"
fi
git tag "${tool}"
retry git push origin --tags
git tag -f "${tool}"
retry git push origin -f refs/tags/"${tool}"
git checkout main
git branch -D "${tool}"
done

View File

@@ -666,7 +666,7 @@ elif check_install shellcheck; then
if [[ ${#docker_files[@]} -gt 0 ]]; then
# Exclude SC2096 due to the way the temporary script is created.
shellcheck_exclude=SC2096
info "running \`shellcheck --exclude ${shellcheck_exclude}\` for scripts in \$(git ls-files '*Dockerfile*')\`"
info "running \`shellcheck --exclude ${shellcheck_exclude}\` for scripts in \`\$(git ls-files '*Dockerfile*')\`"
if check_install jq python3 parse-dockerfile; then
shellcheck_for_dockerfile() {
local text=$1