Compare commits

...

20 Commits

Author SHA1 Message Date
Taiki Endo
02cfd03d1c Release 2.28.8 2024-03-10 16:41:19 +09:00
Taiki Endo
ef34468ec4 Update just manifest 2024-03-10 16:09:15 +09:00
Taiki Endo
8c071244cd Update cargo-no-dev-deps@latest to 0.2.12 2024-03-10 16:09:15 +09:00
Taiki Endo
0c33bd30b5 Update cargo-minimal-versions@latest to 0.1.26 2024-03-10 16:09:15 +09:00
Taiki Endo
0078623260 Update cargo-hack@latest to 0.6.22 2024-03-10 16:09:15 +09:00
Taiki Endo
bdcea8ae05 codegen: Mark just 1.25.1 as broken
As of 2024-03-10 07:03 UTC, this release only contains a x86_64 Linux binaries.

```
Error: platform list in base manifest for just contains x86_64_macos, but latest release (1.25.1) doesn't contain it; consider marking 1.25.1 as broken by adding 'broken' field to base manifest
```

https://github.com/casey/just/actions/runs/8217664170/job/22473612069
2024-03-10 16:04:19 +09:00
Taiki Endo
607d37ff14 Update cargo-binstall@latest to 1.6.4 2024-03-09 15:12:57 +09:00
Taiki Endo
df5e716edf Release 2.28.7 2024-03-09 13:47:57 +09:00
Taiki Endo
9081a21d93 codegen: Mark just 1.25.0 as no longer broken
Reverts 285438a9d9.
Fixed in b40e006fab.
2024-03-09 13:45:11 +09:00
Taiki Endo
4772f78be9 Update just manifest 2024-03-09 06:09:35 +09:00
Taiki Endo
64e43f34b0 Update cspell dictionary 2024-03-09 02:22:02 +09:00
Taiki Endo
7959d3152f ci: Use taiki-e/checkout-action action
https://github.com/taiki-e/checkout-action
2024-03-09 02:21:40 +09:00
Taiki Endo
6cd93b2dae Release 2.28.6 2024-03-09 00:17:12 +09:00
Taiki Endo
8adeb5bc7d Update biome@latest to 1.6.0 2024-03-09 00:10:48 +09:00
Taiki Endo
715c07ff04 Release 2.28.5 2024-03-08 21:37:56 +09:00
Taiki Endo
7d63af0a88 Update shellcheck@latest to 0.10.0 2024-03-08 12:13:21 +09:00
Taiki Endo
c3145b9a6f Update just manifest 2024-03-08 10:50:24 +09:00
Taiki Endo
285438a9d9 codegen: Mark just 1.25.0 as broken
As of 2024-03-08 01:42 UTC, this release only contains a few Linux binaries.

```
Error: platform list in base manifest for just contains x86_64_macos, but latest release (1.25.0) doesn't contain it; consider marking 1.25.0 as broken by adding 'broken' field to base manifest
```

https://github.com/casey/just/actions/runs/8196561542
2024-03-08 10:43:43 +09:00
Taiki Endo
4978b3c854 Release 2.28.4 2024-03-07 06:17:12 +09:00
Taiki Endo
6224cba8b6 Update syft@latest to 1.0.1 2024-03-07 06:10:58 +09:00
13 changed files with 208 additions and 29 deletions

View File

@@ -19,7 +19,6 @@ pwsh
quickinstall
rdme
sccache
shellcheck
shfmt
syft
udeps

View File

@@ -55,7 +55,7 @@ jobs:
runs-on: ${{ matrix.os }}
timeout-minutes: 60
steps:
- uses: taiki-e/github-actions/checkout@main
- uses: taiki-e/checkout-action@v1
# cross attempts to install rust-src when Cargo.toml is available even if `cross --version`
- run: rm Cargo.toml
- name: Generate tool list
@@ -130,7 +130,7 @@ jobs:
run: apk --no-cache add bash cargo
shell: sh
if: startsWith(matrix.container, 'alpine')
- uses: taiki-e/github-actions/checkout@main
- uses: taiki-e/checkout-action@v1
# cross attempts to install rust-src when Cargo.toml is available even if `cross --version`
- run: rm Cargo.toml
- name: Generate tool list
@@ -145,7 +145,7 @@ jobs:
timeout-minutes: 60
container: ubuntu:22.04
steps:
- uses: taiki-e/github-actions/checkout@main
- uses: taiki-e/checkout-action@v1
- name: Generate tool list
id: tool-list
run: tools/ci/tool-list.sh >>"${GITHUB_OUTPUT}"
@@ -160,7 +160,7 @@ jobs:
contents: write
pull-requests: write
steps:
- uses: taiki-e/github-actions/checkout@main
- uses: taiki-e/checkout-action@v1
- name: Install Rust
run: rustup toolchain add nightly --no-self-update && rustup default nightly
- run: tools/manifest.sh

View File

@@ -20,7 +20,7 @@ jobs:
permissions:
contents: write
steps:
- uses: taiki-e/github-actions/checkout@main
- uses: taiki-e/checkout-action@v1
- uses: taiki-e/create-gh-release-action@v1
with:
changelog: CHANGELOG.md

View File

@@ -10,6 +10,32 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com
## [Unreleased]
## [2.28.8] - 2024-03-10
- Update `cargo-no-dev-deps@latest` to 0.2.12.
- Update `cargo-minimal-versions@latest` to 0.1.26.
- Update `cargo-hack@latest` to 0.6.22.
- Update `cargo-binstall@latest` to 1.6.4.
## [2.28.7] - 2024-03-09
- Update `just@latest` to 1.25.0.
## [2.28.6] - 2024-03-08
- Update `biome@latest` to 1.6.0.
## [2.28.5] - 2024-03-08
- Update `shellcheck@latest` to 0.10.0.
## [2.28.4] - 2024-03-06
- Update `syft@latest` to 1.0.1.
## [2.28.3] - 2024-03-06
- Update `cargo-hack@latest` to 0.6.21.
@@ -1851,7 +1877,12 @@ Note: This release is considered a breaking change because installing on version
Initial release
[Unreleased]: https://github.com/taiki-e/install-action/compare/v2.28.3...HEAD
[Unreleased]: https://github.com/taiki-e/install-action/compare/v2.28.8...HEAD
[2.28.8]: https://github.com/taiki-e/install-action/compare/v2.28.7...v2.28.8
[2.28.7]: https://github.com/taiki-e/install-action/compare/v2.28.6...v2.28.7
[2.28.6]: https://github.com/taiki-e/install-action/compare/v2.28.5...v2.28.6
[2.28.5]: https://github.com/taiki-e/install-action/compare/v2.28.4...v2.28.5
[2.28.4]: https://github.com/taiki-e/install-action/compare/v2.28.3...v2.28.4
[2.28.3]: https://github.com/taiki-e/install-action/compare/v2.28.2...v2.28.3
[2.28.2]: https://github.com/taiki-e/install-action/compare/v2.28.1...v2.28.2
[2.28.1]: https://github.com/taiki-e/install-action/compare/v2.28.0...v2.28.1

27
manifests/biome.json generated
View File

@@ -35,10 +35,33 @@
}
},
"latest": {
"version": "1.5.3"
"version": "1.6.0"
},
"1": {
"version": "1.5.3"
"version": "1.6.0"
},
"1.6": {
"version": "1.6.0"
},
"1.6.0": {
"x86_64_linux_musl": {
"checksum": "4a76d09b1c06c3b7c486e99c899076d4f60f8b34d0bb9b41a61abee16345a99c"
},
"x86_64_macos": {
"checksum": "4cf6468c39e3eb45a5bfc4d65365d1b748470d0f97235471263ef7dd66b2bae5"
},
"x86_64_windows": {
"checksum": "43a2df63d8bc3c1afe3560d9a2c4629d6961d31b99d251446ce359e1ce7844dd"
},
"aarch64_linux_musl": {
"checksum": "7897c55191a8c500107764102c0cc5e29f5817829cd4eda6d9e1236aec95cdf7"
},
"aarch64_macos": {
"checksum": "396602d624fe1a68a6ea59a4d75bd43d2643f9283c543e240a86fbd3d21192b6"
},
"aarch64_windows": {
"checksum": "04e5fb6d337f468ab50fae1d2586dd210a8d6adb2cf4879011119b1dcb8446a1"
}
},
"1.5": {
"version": "1.5.3"

View File

@@ -21,26 +21,26 @@
}
},
"latest": {
"version": "1.6.3"
"version": "1.6.4"
},
"1.6.3": {
"1.6.4": {
"x86_64_linux_musl": {
"checksum": "ff8f86eaf79812acc259d249e0c62f4b3103d28a16ec02e7f64f8e3bc9c3d2e9"
"checksum": "b07160c21cdfcc24c3afe94b3cb12bf6d111cef7b218cce85a0c1dfae7e106dd"
},
"x86_64_macos": {
"checksum": "f8eaee08667695cb4d446c5c474ba5415c3bb07be1a213728107ad65788104f1"
"checksum": "761839db77de482f9bbddb87d43563f8308e7dbdccf2bb3c66f3bcbe13a5dee0"
},
"x86_64_windows": {
"checksum": "44394103dc261b05ac928f23f8013f5c7e8355a10e849f096d792030f82c89c4"
"checksum": "2a05851e1a854cc27c7c6a04f665d506bf2b7aa0aa62721a82af9aeeff9d20d2"
},
"aarch64_linux_musl": {
"checksum": "98d1b33b2c2cf076bdc8993d1a645ade9cb36919e22516faf5830933513a03fa"
"checksum": "70c17459e4bc0b417679e66af55199603d80fa751d819b86713f700e3e9a6602"
},
"aarch64_macos": {
"checksum": "89696b9b02605c0775ca02b0bab3f07843833e3e247b953a5b8f97daa043bdc1"
"checksum": "64755bfa178ba061c90d46fdf6c977c9b78564bcb4605ff827855d6623453be9"
},
"aarch64_windows": {
"checksum": "cec760fdeb4523e3de1d7febc1d07bee9aa9a3a3837fd9ec0191ad7396e38ca0"
"checksum": "1277c4ae1a772f803355e256192c2b8bc434421dbd137a9b895ca8031a31ddb3"
}
}
}

View File

@@ -2,10 +2,36 @@
"rust_crate": "cargo-hack",
"template": null,
"latest": {
"version": "0.6.21"
"version": "0.6.22"
},
"0.6": {
"version": "0.6.21"
"version": "0.6.22"
},
"0.6.22": {
"x86_64_linux_musl": {
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.22/cargo-hack-x86_64-unknown-linux-musl.tar.gz",
"checksum": "25d19166c2e3be108d815bfb15624b2ff82909a0b92bfbf56f5c3e2e44db4eb6"
},
"x86_64_macos": {
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.22/cargo-hack-x86_64-apple-darwin.tar.gz",
"checksum": "eff3116e6c9f0ac543d3ad02960a626f1e1a82aebb0d1d5377ed1cf3c923a746"
},
"x86_64_windows": {
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.22/cargo-hack-x86_64-pc-windows-msvc.tar.gz",
"checksum": "d4d6482e55ca7c08cddde24eb9539c0642392eef3c79a3abde26bee9a0308735"
},
"aarch64_linux_musl": {
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.22/cargo-hack-aarch64-unknown-linux-musl.tar.gz",
"checksum": "5e025b0a806ee48440dbc858f9239e45dc823ea178a1c8953eb6b36209f212e2"
},
"aarch64_macos": {
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.22/cargo-hack-aarch64-apple-darwin.tar.gz",
"checksum": "e0a30429c822453c0557defcffc3bb33146bf211489e6848024f60023446e897"
},
"aarch64_windows": {
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.22/cargo-hack-aarch64-pc-windows-msvc.tar.gz",
"checksum": "fdd599e2327e54422b7288bc5385e1e0353a60e48376107f9bc8e659b082abc2"
}
},
"0.6.21": {
"x86_64_linux_musl": {

View File

@@ -21,10 +21,30 @@
}
},
"latest": {
"version": "0.1.25"
"version": "0.1.26"
},
"0.1": {
"version": "0.1.25"
"version": "0.1.26"
},
"0.1.26": {
"x86_64_linux_musl": {
"checksum": "6a8fc07cc5bc50f43045322d4e6380df07ff487b57a467f192a9b9627fd129df"
},
"x86_64_macos": {
"checksum": "11cff520bb3575ce1f0b7ba8e1701e4c2f294a17f85f51a51e1a58bd9b79bff3"
},
"x86_64_windows": {
"checksum": "3b9ebd11fe8d4947fdd58bccf4bd81810a5ff71a5095a0e84118715d721871c7"
},
"aarch64_linux_musl": {
"checksum": "2f773cbb435511a07a024d2de3e8f60bd284c77a840811c1234e29f3cb0df5a8"
},
"aarch64_macos": {
"checksum": "0e7b05d74baf1821e53c62ab6dc524847ea3af5a2b9fa0432e3c570e4ac368dd"
},
"aarch64_windows": {
"checksum": "e21a4b25db1989afbafa9a9cc414fc75ff7f6aa75e783160934729c717b4f15e"
}
},
"0.1.25": {
"x86_64_linux_musl": {

View File

@@ -21,10 +21,30 @@
}
},
"latest": {
"version": "0.2.11"
"version": "0.2.12"
},
"0.2": {
"version": "0.2.11"
"version": "0.2.12"
},
"0.2.12": {
"x86_64_linux_musl": {
"checksum": "dc8922c69564dae3b8fb61c92c9f54d0b54fe5280950e05c9e6fed0a82ee66fb"
},
"x86_64_macos": {
"checksum": "ecc61dc31eb42cf8b5bbb37ad0f52e269d881712fb8a54344eef64a91a2f0b56"
},
"x86_64_windows": {
"checksum": "6f354aafb4d3140ca5e3cfadcdde83f4d5d380598bb1106506dbcbf3d096d089"
},
"aarch64_linux_musl": {
"checksum": "8a0a2411f8d86dfbf3999d0f2533d1324ffc84a91feddcaac07154a600ee0e49"
},
"aarch64_macos": {
"checksum": "7e73edade320c92c729eba3264f49679c3bf8267bf57aa5b7bcf7912f645bd18"
},
"aarch64_windows": {
"checksum": "a0f77f2b48cef8c6370b380f5720eeefab53865ee4305a8c587d82ce6bfc8105"
}
},
"0.2.11": {
"x86_64_linux_musl": {

29
manifests/just.json generated
View File

@@ -18,10 +18,35 @@
}
},
"latest": {
"version": "1.24.0"
"version": "1.25.0"
},
"1": {
"version": "1.24.0"
"version": "1.25.0"
},
"1.25": {
"version": "1.25.0"
},
"1.25.1": {
"x86_64_linux_musl": {
"checksum": "84c638108f84144c82507a83e4611afa1a86f55b51e14a7a9056235640c56013"
}
},
"1.25.0": {
"x86_64_linux_musl": {
"checksum": "1eeda5d8b319ce7868ee43748687f849e5a9ec2d03f64e0ebeda05af08f67af4"
},
"x86_64_macos": {
"checksum": "fbf2ef5ab53470c9fbce7f76b87008145addea90671148850e01ac204e3b461b"
},
"x86_64_windows": {
"checksum": "76a99c45395ccae0c2e8d95886c7059fde8f2f6cb25c697f55fd9252fe4930ea"
},
"aarch64_linux_musl": {
"checksum": "c73a41acce0f0913405e33009d60645824576a1177039bed9c7575f4c153eb0f"
},
"aarch64_macos": {
"checksum": "cbea371d2e15e94b33f3097eaf0ec97906c7b41ed81cf2d7d3ca972f1774f3ea"
}
},
"1.24": {
"version": "1.24.0"

View File

@@ -19,7 +19,24 @@
}
},
"latest": {
"version": "0.9.0"
"version": "0.10.0"
},
"0.10": {
"version": "0.10.0"
},
"0.10.0": {
"x86_64_linux_musl": {
"checksum": "6c881ab0698e4e6ea235245f22832860544f17ba386442fe7e9d629f8cbedf87"
},
"x86_64_macos": {
"checksum": "ef27684f23279d112d8ad84e0823642e43f838993bbb8c0963db9b58a90464c2"
},
"x86_64_windows": {
"checksum": "eb6cd53a54ea97a56540e9d296ce7e2fa68715aa507ff23574646c1e12b2e143"
},
"aarch64_linux_musl": {
"checksum": "324a7e89de8fa2aed0d0c28f3dab59cf84c6d74264022c00c22af665ed1a09bb"
}
},
"0.9": {
"version": "0.9.0"

23
manifests/syft.json generated
View File

@@ -23,13 +23,30 @@
}
},
"latest": {
"version": "1.0.0"
"version": "1.0.1"
},
"1": {
"version": "1.0.0"
"version": "1.0.1"
},
"1.0": {
"version": "1.0.0"
"version": "1.0.1"
},
"1.0.1": {
"x86_64_linux_musl": {
"checksum": "420f90e57def27745e414efcb7a41384b2ccdccafca87c327096ca44621ab0ce"
},
"x86_64_macos": {
"checksum": "3730868e23a65c0c2b94bd1d3c7ce608176aa98b631bf98249f04bec1a035b12"
},
"x86_64_windows": {
"checksum": "95bc151e3a713a31f7ae7bfacbe0bda8c8d8e08e390038b0c2fc7220c1b9c49c"
},
"aarch64_linux_musl": {
"checksum": "c8582aa0e1c92c84c4a751c739ac3d7ca48c88a54b5d1b884d0629d7df72a6f9"
},
"aarch64_macos": {
"checksum": "5dc061290afb7e8249dc590fcf4a7e15966346e73948415559855e1154fc0f42"
}
},
"1.0.0": {
"x86_64_linux_musl": {

View File

@@ -2,6 +2,7 @@
"repository": "https://github.com/casey/just",
"tag_prefix": "",
"rust_crate": "${package}",
"broken": ["1.25.1"],
"asset_name": "${package}-${version}-${rust_target}.tar.gz",
"platform": {
"x86_64_linux_musl": {},