mirror of
https://github.com/taiki-e/install-action.git
synced 2026-04-29 02:20:22 +00:00
Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
cf31de7dc9 | ||
|
|
d5a57f1f97 | ||
|
|
af393be830 | ||
|
|
da7b09811a | ||
|
|
f0940d272d | ||
|
|
6a6032c8d2 | ||
|
|
7dcb31b803 | ||
|
|
9546f7a9e6 | ||
|
|
e6605310f9 | ||
|
|
dd34dd71c2 |
22
CHANGELOG.md
22
CHANGELOG.md
@@ -10,6 +10,22 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [2.26.11] - 2024-02-03
|
||||
|
||||
- Update `cargo-hack@latest` to 0.6.17.
|
||||
|
||||
## [2.26.10] - 2024-02-02
|
||||
|
||||
- Update `cargo-make@latest` to 0.37.9.
|
||||
|
||||
## [2.26.9] - 2024-02-01
|
||||
|
||||
- Update `syft@latest` to 0.103.1.
|
||||
|
||||
## [2.26.8] - 2024-01-31
|
||||
|
||||
- Update `osv-scanner@latest` to 1.6.2.
|
||||
|
||||
## [2.26.7] - 2024-01-26
|
||||
|
||||
- Update `syft@latest` to 0.102.0.
|
||||
@@ -1703,7 +1719,11 @@ Note: This release is considered a breaking change because installing on version
|
||||
|
||||
Initial release
|
||||
|
||||
[Unreleased]: https://github.com/taiki-e/install-action/compare/v2.26.7...HEAD
|
||||
[Unreleased]: https://github.com/taiki-e/install-action/compare/v2.26.11...HEAD
|
||||
[2.26.11]: https://github.com/taiki-e/install-action/compare/v2.26.10...v2.26.11
|
||||
[2.26.10]: https://github.com/taiki-e/install-action/compare/v2.26.9...v2.26.10
|
||||
[2.26.9]: https://github.com/taiki-e/install-action/compare/v2.26.8...v2.26.9
|
||||
[2.26.8]: https://github.com/taiki-e/install-action/compare/v2.26.7...v2.26.8
|
||||
[2.26.7]: https://github.com/taiki-e/install-action/compare/v2.26.6...v2.26.7
|
||||
[2.26.6]: https://github.com/taiki-e/install-action/compare/v2.26.5...v2.26.6
|
||||
[2.26.5]: https://github.com/taiki-e/install-action/compare/v2.26.4...v2.26.5
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
resolver = "2"
|
||||
members = ["tools/codegen"]
|
||||
|
||||
# This table is shared by projects under https://github.com/taiki-e.
|
||||
# This table is shared by projects under github.com/taiki-e.
|
||||
# It is not intended for manual editing.
|
||||
[workspace.lints.rust]
|
||||
improper_ctypes = "warn"
|
||||
|
||||
30
manifests/cargo-hack.json
generated
30
manifests/cargo-hack.json
generated
@@ -2,10 +2,36 @@
|
||||
"rust_crate": "cargo-hack",
|
||||
"template": null,
|
||||
"latest": {
|
||||
"version": "0.6.16"
|
||||
"version": "0.6.17"
|
||||
},
|
||||
"0.6": {
|
||||
"version": "0.6.16"
|
||||
"version": "0.6.17"
|
||||
},
|
||||
"0.6.17": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.17/cargo-hack-x86_64-unknown-linux-musl.tar.gz",
|
||||
"checksum": "139e31f95ee122cc6937386758491d15668c3c4e54ef7de1055e3b1b0a53be8e"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.17/cargo-hack-x86_64-apple-darwin.tar.gz",
|
||||
"checksum": "57cfa14d6de673828c03df95adf8c25a23cd3ac4f586466e09661049175dad02"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.17/cargo-hack-x86_64-pc-windows-msvc.tar.gz",
|
||||
"checksum": "c0c279c240359b18d05619d5ec1cb0bec0c834c3f1700d9676675977a33b183e"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.17/cargo-hack-aarch64-unknown-linux-musl.tar.gz",
|
||||
"checksum": "b9a6a1d12e2967885276be7a548bfd00508b12648a3f1cfae08b0516b917f417"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.17/cargo-hack-aarch64-apple-darwin.tar.gz",
|
||||
"checksum": "e9fe200729ceab30c30ae45104356caf867821477669270d2499ab8ea54d5770"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.17/cargo-hack-aarch64-pc-windows-msvc.tar.gz",
|
||||
"checksum": "5deff267fa443016285ca9d8846b033af089f0a49f211eaa16bcdd9e5cb65395"
|
||||
}
|
||||
},
|
||||
"0.6.16": {
|
||||
"x86_64_linux_musl": {
|
||||
|
||||
18
manifests/cargo-make.json
generated
18
manifests/cargo-make.json
generated
@@ -19,10 +19,24 @@
|
||||
}
|
||||
},
|
||||
"latest": {
|
||||
"version": "0.37.8"
|
||||
"version": "0.37.9"
|
||||
},
|
||||
"0.37": {
|
||||
"version": "0.37.8"
|
||||
"version": "0.37.9"
|
||||
},
|
||||
"0.37.9": {
|
||||
"x86_64_linux_musl": {
|
||||
"checksum": "f41cfe97b38bb30c2973d1ea3f327fb3bee0ab67de0a9aac9ea894895e45eb55"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "f95913ba9a0d1497f3fd7177943fee1bceaa445a35b53fca7333fa98c2b78759"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "4d4c45546402e6edf387348f9e83281cc1415b0990c69a31a4462a81b43b8835"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"checksum": "4dcef5b4d87d5cb6331cc4d9fbb6c855cd9ecaf86be54b91fba99f22795cfcfd"
|
||||
}
|
||||
},
|
||||
"0.37.8": {
|
||||
"x86_64_linux_musl": {
|
||||
|
||||
26
manifests/osv-scanner.json
generated
26
manifests/osv-scanner.json
generated
@@ -21,13 +21,33 @@
|
||||
}
|
||||
},
|
||||
"latest": {
|
||||
"version": "1.6.1"
|
||||
"version": "1.6.2"
|
||||
},
|
||||
"1": {
|
||||
"version": "1.6.1"
|
||||
"version": "1.6.2"
|
||||
},
|
||||
"1.6": {
|
||||
"version": "1.6.1"
|
||||
"version": "1.6.2"
|
||||
},
|
||||
"1.6.2": {
|
||||
"x86_64_linux_gnu": {
|
||||
"checksum": "b8440f451509ea4a4f12b363352659e7c37718d8e170d537ffdd481b031cfd41"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "07cd355aa9b0bc3b1013b9e053cf79ebadfe51d48337707194d39807293d79c8"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "2bccba4c1b97906ec9dab4307d2ec701c5636f786e073707880ba91e57a71923"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"checksum": "57821f223373d259469d5d08bd7710cd228e7c056aaa5ab70045ba3f9d32c991"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"checksum": "646bf2564680ef776de5478ec5fd34f2ed3f945345d16aa01f64e388fa40c9d6"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"checksum": "060270c5499d51890f97812ef92e751b7243e0a76503376d860d083712f62a7d"
|
||||
}
|
||||
},
|
||||
"1.6.1": {
|
||||
"x86_64_linux_gnu": {
|
||||
|
||||
22
manifests/syft.json
generated
22
manifests/syft.json
generated
@@ -23,7 +23,27 @@
|
||||
}
|
||||
},
|
||||
"latest": {
|
||||
"version": "0.102.0"
|
||||
"version": "0.103.1"
|
||||
},
|
||||
"0.103": {
|
||||
"version": "0.103.1"
|
||||
},
|
||||
"0.103.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"checksum": "d128c3fbd86816e8c6f69df436b18a780a2b5d19f020c47a508ec2a2e88bef0b"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"checksum": "5f0d8fdec61b2f81fa1974416b37bf80740bd1d83f06b55e7defca41558ee3f1"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"checksum": "fd2204b44cbadbc84af50740b0005341c269420ec8c234f51250ea4c0b1a02e9"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"checksum": "4d424a5f3d9754e00fc1e374b493e22ee5da590ebcde29d02cef1013671cf28b"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"checksum": "462d637405ebb02d49b03dd888dd4a7bca6a3efd2e4cef73a43111b1e4cbdf8e"
|
||||
}
|
||||
},
|
||||
"0.102": {
|
||||
"version": "0.102.0"
|
||||
|
||||
@@ -76,10 +76,10 @@ if [[ -n "${tags}" ]]; then
|
||||
fi
|
||||
# Update changelog.
|
||||
remote_url=$(grep -E '^\[Unreleased\]: https://' "${changelog}" | sed 's/^\[Unreleased\]: //; s/\.\.\.HEAD$//')
|
||||
before_tag="${remote_url#*/compare/}"
|
||||
prev_tag="${remote_url#*/compare/}"
|
||||
remote_url="${remote_url%/compare/*}"
|
||||
sed -i "s/^## \\[Unreleased\\]/## [Unreleased]\\n\\n## [${version}] - ${release_date}/" "${changelog}"
|
||||
sed -i "s#^\[Unreleased\]: https://.*#[Unreleased]: ${remote_url}/compare/${tag}...HEAD\\n[${version}]: ${remote_url}/compare/${before_tag}...${tag}#" "${changelog}"
|
||||
sed -i "s#^\[Unreleased\]: https://.*#[Unreleased]: ${remote_url}/compare/${tag}...HEAD\\n[${version}]: ${remote_url}/compare/${prev_tag}...${tag}#" "${changelog}"
|
||||
if ! grep -Eq "^## \\[${version//./\\.}\\] - ${release_date}$" "${changelog}"; then
|
||||
bail "failed to update ${changelog}"
|
||||
fi
|
||||
|
||||
@@ -91,6 +91,7 @@ if [[ -n "$(git ls-files '*.rs')" ]]; then
|
||||
error "please replace \`.cast()\` with \`.cast::<type_name>()\`:"
|
||||
echo "${cast_without_turbofish}"
|
||||
fi
|
||||
# Sync readme and crate-level doc.
|
||||
first='1'
|
||||
for readme in $(git ls-files '*README.md'); do
|
||||
if ! grep -q '^<!-- tidy:crate-doc:start -->' "${readme}"; then
|
||||
|
||||
Reference in New Issue
Block a user