Compare commits

...

18 Commits

Author SHA1 Message Date
Taiki Endo
a6173a9cbc Release 2.24.3 2024-01-10 22:53:49 +09:00
Taiki Endo
8251a6cd42 Update biome@latest to 1.5.1 2024-01-10 22:53:09 +09:00
Taiki Endo
e605edc47e ci: Use taiki-e/github-actions/checkout action 2024-01-10 22:44:03 +09:00
Taiki Endo
4f962f78e7 Ignore more clippy lints at workspace level 2024-01-10 22:44:03 +09:00
Taiki Endo
ca83797101 Update protoc@latest to 3.25.2 2024-01-10 09:22:52 +09:00
Taiki Endo
2f4c386a81 Release 2.24.2 2024-01-09 10:29:17 +09:00
Taiki Endo
a511d919a4 Tweak readme 2024-01-09 10:29:02 +09:00
Taiki Endo
1524d6c531 Update just@latest to 1.22.1 2024-01-09 09:51:02 +09:00
Taiki Endo
e29c07de36 Update biome@latest to 1.5.0 2024-01-09 03:10:23 +09:00
Taiki Endo
da1493208a Release 2.24.1 2024-01-08 03:15:57 +09:00
Taiki Endo
a5be44366e Update cargo-careful@latest to 0.4.1 2024-01-08 03:10:55 +09:00
Taiki Endo
f34807f132 Release 2.24.0 2024-01-07 15:45:29 +09:00
Taiki Endo
9e575ebcb2 Apply missing_debug_implementations lint at workspace level 2024-01-07 15:42:20 +09:00
Taiki Endo
d7f4e30ed1 Update cargo-binstall@latest to 1.5.0 2024-01-07 15:08:11 +09:00
Taiki Endo
c63cad0540 Release 2.23.9 2024-01-06 11:21:14 +09:00
Taiki Endo
2f78626307 Update syft@latest to 0.100.0 2024-01-06 09:21:50 +09:00
Taiki Endo
115b656342 Release 2.23.8 2024-01-05 12:07:16 +09:00
Taiki Endo
280f69ff01 Update just@latest to 1.22.0 2024-01-05 09:21:49 +09:00
11 changed files with 195 additions and 39 deletions

View File

@@ -55,9 +55,7 @@ jobs:
runs-on: ${{ matrix.os }}
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: taiki-e/github-actions/checkout@main
# cross attempts to install rust-src when Cargo.toml is available even if `cross --version`
- run: rm Cargo.toml
- name: Generate tool list
@@ -125,10 +123,6 @@ jobs:
- name: Install requirements (fedora/almalinux/centos)
run: |
set -eEuxo pipefail
if ! type -P dnf &>/dev/null && type -P microdnf &>/dev/null; then
# tar and gzip are required for actions/checkout on *-minimal images
microdnf install -y tar gzip
fi
curl --proto '=https' --tlsv1.2 -fsSL --retry 10 https://sh.rustup.rs | sh -s -- -y --profile minimal --default-toolchain stable --no-modify-path
echo "$HOME/.cargo/bin" >>"${GITHUB_PATH}"
if: startsWith(matrix.container, 'fedora') || startsWith(matrix.container, 'almalinux') || startsWith(matrix.container, 'centos')
@@ -136,9 +130,7 @@ jobs:
run: apk --no-cache add bash cargo
shell: sh
if: startsWith(matrix.container, 'alpine')
- uses: actions/checkout@v3 # TODO: actions/checkout@v4 requires glibc 2.28+
with:
persist-credentials: false
- uses: taiki-e/github-actions/checkout@main
# cross attempts to install rust-src when Cargo.toml is available even if `cross --version`
- run: rm Cargo.toml
- name: Generate tool list
@@ -153,9 +145,7 @@ jobs:
timeout-minutes: 60
container: ubuntu:22.04
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: taiki-e/github-actions/checkout@main
- name: Generate tool list
id: tool-list
run: tools/ci/tool-list.sh >>"${GITHUB_OUTPUT}"
@@ -170,9 +160,7 @@ jobs:
contents: write
pull-requests: write
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: taiki-e/github-actions/checkout@main
- name: Install Rust
run: rustup toolchain add nightly --no-self-update && rustup default nightly
- run: tools/manifest.sh

View File

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

View File

@@ -10,6 +10,34 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com
## [Unreleased]
## [2.24.3] - 2024-01-10
- Update `biome@latest` to 1.5.1.
- Update `protoc@latest` to 3.25.2.
## [2.24.2] - 2024-01-09
- Update `just@latest` to 1.22.1.
- Update `biome@latest` to 1.5.0.
## [2.24.1] - 2024-01-07
- Update `cargo-careful@latest` to 0.4.1.
## [2.24.0] - 2024-01-07
- Update `cargo-binstall@latest` to 1.5.0.
## [2.23.9] - 2024-01-06
- Update `syft@latest` to 0.100.0.
## [2.23.8] - 2024-01-05
- Update `just@latest` to 1.22.0.
## [2.23.7] - 2023-12-30
- Update `just@latest` to 1.21.0.
@@ -1575,7 +1603,13 @@ Note: This release is considered a breaking change because installing on version
Initial release
[Unreleased]: https://github.com/taiki-e/install-action/compare/v2.23.7...HEAD
[Unreleased]: https://github.com/taiki-e/install-action/compare/v2.24.3...HEAD
[2.24.3]: https://github.com/taiki-e/install-action/compare/v2.24.2...v2.24.3
[2.24.2]: https://github.com/taiki-e/install-action/compare/v2.24.1...v2.24.2
[2.24.1]: https://github.com/taiki-e/install-action/compare/v2.24.0...v2.24.1
[2.24.0]: https://github.com/taiki-e/install-action/compare/v2.23.9...v2.24.0
[2.23.9]: https://github.com/taiki-e/install-action/compare/v2.23.8...v2.23.9
[2.23.8]: https://github.com/taiki-e/install-action/compare/v2.23.7...v2.23.8
[2.23.7]: https://github.com/taiki-e/install-action/compare/v2.23.6...v2.23.7
[2.23.6]: https://github.com/taiki-e/install-action/compare/v2.23.5...v2.23.6
[2.23.5]: https://github.com/taiki-e/install-action/compare/v2.23.4...v2.23.5

View File

@@ -7,6 +7,7 @@ members = ["tools/codegen"]
[workspace.lints.rust]
improper_ctypes = "warn"
improper_ctypes_definitions = "warn"
missing_debug_implementations = "warn"
non_ascii_idents = "warn"
rust_2018_idioms = "warn"
single_use_lifetimes = "warn"
@@ -22,6 +23,7 @@ trailing_empty_array = "warn"
transmute_undefined_repr = "warn"
undocumented_unsafe_blocks = "warn"
# Suppress buggy or noisy clippy lints
bool_assert_comparison = { level = "allow", priority = 1 }
borrow_as_ptr = { level = "allow", priority = 1 } # https://github.com/rust-lang/rust-clippy/issues/8286
doc_markdown = { level = "allow", priority = 1 }
float_cmp = { level = "allow", priority = 1 } # https://github.com/rust-lang/rust-clippy/issues/7725
@@ -33,6 +35,7 @@ similar_names = { level = "allow", priority = 1 }
single_match = { level = "allow", priority = 1 }
single_match_else = { level = "allow", priority = 1 }
struct_excessive_bools = { level = "allow", priority = 1 }
struct_field_names = { level = "allow", priority = 1 }
too_many_arguments = { level = "allow", priority = 1 }
too_many_lines = { level = "allow", priority = 1 }
type_complexity = { level = "allow", priority = 1 }

View File

@@ -1,7 +1,7 @@
# install-action
[![release](https://img.shields.io/github/release/taiki-e/install-action?style=flat-square&logo=github)](https://github.com/taiki-e/install-action/releases/latest)
[![build status](https://img.shields.io/github/actions/workflow/status/taiki-e/install-action/ci.yml?branch=main&style=flat-square&logo=github)](https://github.com/taiki-e/install-action/actions)
[![github actions](https://img.shields.io/github/actions/workflow/status/taiki-e/install-action/ci.yml?branch=main&style=flat-square&logo=github)](https://github.com/taiki-e/install-action/actions)
GitHub Action for installing development tools (mainly from GitHub Releases).

47
manifests/biome.json generated
View File

@@ -27,10 +27,53 @@
}
},
"latest": {
"version": "1.4.1"
"version": "1.5.1"
},
"1": {
"version": "1.4.1"
"version": "1.5.1"
},
"1.5": {
"version": "1.5.1"
},
"1.5.1": {
"x86_64_linux_gnu": {
"checksum": "1e2733e7a55082374873e1d8a1556935dd48d5c528c0e939c52cae29f0c95e81"
},
"x86_64_macos": {
"checksum": "2e7e55efdfdd971ae001f2be314b471fbd227571d2d52da799e4e517f731563a"
},
"x86_64_windows": {
"checksum": "6f2412b34a988c076558f60acbdde020dc41e1fb699061763b545a3a4469a97b"
},
"aarch64_linux_gnu": {
"checksum": "e4410194d91214d38c11891e4220ae456ab07e5064dd84738f994a4115dca84e"
},
"aarch64_macos": {
"checksum": "d188409cb501e7292d1ded87a239483a9fedf886765fc5a33602a673c1fdd3af"
},
"aarch64_windows": {
"checksum": "6adab1ad668a0b94c502f2bb2d9c261ad6ec7bdc472630b28a2884b6fd8ce256"
}
},
"1.5.0": {
"x86_64_linux_gnu": {
"checksum": "a65243093d0a0b0e27e8cc6e6f2ae8e9b9318f35cdbec6ffeee3d611cc498262"
},
"x86_64_macos": {
"checksum": "c82f7f76379f1e8a3750370a4ca0b9295aa64c12a5d76ce88bef7b687fe823b2"
},
"x86_64_windows": {
"checksum": "d475f4267e5247e32f3d412367a8916d2b21fc0eab058cf5e60cef040934ac33"
},
"aarch64_linux_gnu": {
"checksum": "45f9d6eb7ca363328f3cf34d65b63510f1297819707018be91a65538f55c0822"
},
"aarch64_macos": {
"checksum": "2176799b0ef60820374e180cbf6d3b14aac9fc49080329e49abbb78d37bfdcfa"
},
"aarch64_windows": {
"checksum": "b1fefa6fe489ca50bed539931b71c208198e38793097957549474c961c110300"
}
},
"1.4": {
"version": "1.4.1"

View File

@@ -21,26 +21,26 @@
}
},
"latest": {
"version": "1.4.9"
"version": "1.5.0"
},
"1.4.9": {
"1.5.0": {
"x86_64_linux_musl": {
"checksum": "2e05abcc3a9a26d2bf130462a4d0b555faf99aca3331307bfa6071f0065a9cfd"
"checksum": "a1c4c2f1bce6ba39d39c5e60e8ec92c4bc501fa04eecfdb8488b4752a9a1d739"
},
"x86_64_macos": {
"checksum": "97ace73eb4da7f77423d700714162f3d0575c8fdd4779f1c08cc01197c294e06"
"checksum": "e3fe34a23505c07fd8f82d44cc6dbfdd6e179c5130b73e68f7eead83914df636"
},
"x86_64_windows": {
"checksum": "a057bd0bcb98819e651fe47a3d6ff60cbf1d18bbf186a0145858120c52daade8"
"checksum": "0b9594380a217ba83e6df52ec1339707e7c6aaf520a554a714d708e4fb5fe9e9"
},
"aarch64_linux_musl": {
"checksum": "d65dba6b8e8842d400ae7238c98032c908e16602cd732b00c834339a0849c0bb"
"checksum": "970c3cf7c73b2e4cf87f3ab0211e78a87a24c954f905ab1503863b7a69883b27"
},
"aarch64_macos": {
"checksum": "f3f4973759bdc7290304051851ec26ac7b3db770598ca32f67a2b90afe66af78"
"checksum": "e783362568f75261535925493a99fd17107c67b5eab633f42d5670abfe1ee0de"
},
"aarch64_windows": {
"checksum": "72d621edf5336d9e93e360e8cad3bf74d6be60b86c30b98f8ebbd356c562d48f"
"checksum": "e8afd48113a92c92ac463a8b1feb4f5564d195bc29c8fb945a34b39f4245fb27"
}
}
}

View File

@@ -12,10 +12,21 @@
}
},
"latest": {
"version": "0.4.0"
"version": "0.4.1"
},
"0.4": {
"version": "0.4.0"
"version": "0.4.1"
},
"0.4.1": {
"x86_64_linux_musl": {
"checksum": "ea403df41ca913e536f97b8a039343173abae399436570a16d271908af989808"
},
"x86_64_macos": {
"checksum": "ccbee4b5a0f5bf235c038b89d6046c08b2bff405ffa7289f4194f5402ea96c15"
},
"x86_64_windows": {
"checksum": "655ac5c504b2f54f11807edc6d9a19cea668bfb119ea086c5848504f7d09071c"
}
},
"0.4.0": {
"x86_64_linux_musl": {

41
manifests/just.json generated
View File

@@ -18,10 +18,47 @@
}
},
"latest": {
"version": "1.21.0"
"version": "1.22.1"
},
"1": {
"version": "1.21.0"
"version": "1.22.1"
},
"1.22": {
"version": "1.22.1"
},
"1.22.1": {
"x86_64_linux_musl": {
"checksum": "0453edb7fcd7314f54c06ad332cd2a2c6196c9652e856919ff4c3fe6bef931c5"
},
"x86_64_macos": {
"checksum": "b6d2ea6086938f2e08d3163a2038fdc31a5e9cc7065079134ef47e53d37d5a95"
},
"x86_64_windows": {
"checksum": "5e98f799c3f11bd1cecdbfcfbdd2cf565aa8e8a04a5e98581d9e0c0ed557c398"
},
"aarch64_linux_musl": {
"checksum": "19ee9561c00a1e9292be60edc5b99495a8284bc70f73f94b3e0552ce4016a999"
},
"aarch64_macos": {
"checksum": "09b4a2585a00e63d22e86b4f1104e229ac47f0bacaa78fb64cbaf08765c28cf8"
}
},
"1.22.0": {
"x86_64_linux_musl": {
"checksum": "01331c3c9c190af5686384d8775fc1bf483c0e4699f84f728fbdfc28c660e2ef"
},
"x86_64_macos": {
"checksum": "29524fcb347dac2832a18fe4ec229e1bc82d66b403efdaa2a334d2aef7992ee4"
},
"x86_64_windows": {
"checksum": "464f8232f3c9bcf09799ad8af5b4817b2c9192da6407f2348b60b76c660b08d8"
},
"aarch64_linux_musl": {
"checksum": "5a281fa22e8d7107f2d299dd7662cfce48b85c3aba1b5206676e81da8c3c4bc1"
},
"aarch64_macos": {
"checksum": "218bf5f27443e8b484c29a4d55f5ab7f7ecb15af95d32d63d231d71e73309d9c"
}
},
"1.21": {
"version": "1.21.0"

28
manifests/protoc.json generated
View File

@@ -2,13 +2,35 @@
"rust_crate": null,
"template": null,
"latest": {
"version": "3.25.1"
"version": "3.25.2"
},
"3": {
"version": "3.25.1"
"version": "3.25.2"
},
"3.25": {
"version": "3.25.1"
"version": "3.25.2"
},
"3.25.2": {
"x86_64_linux_gnu": {
"url": "https://github.com/protocolbuffers/protobuf/releases/download/v25.2/protoc-25.2-linux-x86_64.zip",
"checksum": "78ab9c3288919bdaa6cfcec6127a04813cf8a0ce406afa625e48e816abee2878"
},
"x86_64_macos": {
"url": "https://github.com/protocolbuffers/protobuf/releases/download/v25.2/protoc-25.2-osx-x86_64.zip",
"checksum": "5fe89993769616beff1ed77408d1335216379ce7010eee80284a01f9c87c8888"
},
"x86_64_windows": {
"url": "https://github.com/protocolbuffers/protobuf/releases/download/v25.2/protoc-25.2-win64.zip",
"checksum": "74cf3a0ead50be525ad393f820fce64baed3776202ff3b8423acf3bf0daaf542"
},
"aarch64_linux_gnu": {
"url": "https://github.com/protocolbuffers/protobuf/releases/download/v25.2/protoc-25.2-linux-aarch_64.zip",
"checksum": "07683afc764e4efa3fa969d5f049fbc2bdfc6b4e7786a0b233413ac0d8753f6b"
},
"aarch64_macos": {
"url": "https://github.com/protocolbuffers/protobuf/releases/download/v25.2/protoc-25.2-osx-aarch_64.zip",
"checksum": "8822b090c396800c96ac652040917eb3fbc5e542538861aad7c63b8457934b20"
}
},
"3.25.1": {
"x86_64_linux_gnu": {

22
manifests/syft.json generated
View File

@@ -23,7 +23,27 @@
}
},
"latest": {
"version": "0.99.0"
"version": "0.100.0"
},
"0.100": {
"version": "0.100.0"
},
"0.100.0": {
"x86_64_linux_musl": {
"checksum": "0b9db5e79568dfe846abec744ff3f3e4d6aeef1a2e8c84a5cfe355c4d05e2b4a"
},
"x86_64_macos": {
"checksum": "2a8ae723034874fb2a45cc9b8b3fc371d60d7ef1aeefdce28c4b22856595b7c9"
},
"x86_64_windows": {
"checksum": "4490bf39e4432823a54166b6245f4255030d193eb05230c166f8589d48a736ca"
},
"aarch64_linux_musl": {
"checksum": "697d039c6d31d551d77472c498370605b2b666c3cfdfc8f961d448de3039bef7"
},
"aarch64_macos": {
"checksum": "67cac58c26f9b701583feca5d9a2b0f07d5dee73465f7610f7ccad02aa924feb"
}
},
"0.99": {
"version": "0.99.0"