From 3023e85778327575993c07b397edc8f4a13d7dc0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 6 May 2026 12:46:42 +0000 Subject: [PATCH 1/2] chore(deps): bump taiki-e/install-action from 2.75.25 to 2.75.26 Bumps [taiki-e/install-action](https://github.com/taiki-e/install-action) from 2.75.25 to 2.75.26. - [Release notes](https://github.com/taiki-e/install-action/releases) - [Changelog](https://github.com/taiki-e/install-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/taiki-e/install-action/compare/1329c298aa20c3257846c9b2e0e55967df3e3c37...b651345a718c8f44efa2460560b3dbf29cbd7ee1) --- updated-dependencies: - dependency-name: taiki-e/install-action dependency-version: 2.75.26 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yaml | 6 +++--- .github/workflows/playground.yaml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 15adc6e..79485d8 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -62,11 +62,11 @@ jobs: - name: Cache cargo uses: Swatinem/rust-cache@c19371144df3bb44fab255c43d04cbc2ab54d1c4 # v2.9.1 - name: Install cargo-llvm-cov - uses: taiki-e/install-action@1329c298aa20c3257846c9b2e0e55967df3e3c37 # v2.75.25 + uses: taiki-e/install-action@b651345a718c8f44efa2460560b3dbf29cbd7ee1 # v2.75.26 with: tool: cargo-llvm-cov - name: Install wasm-pack - uses: taiki-e/install-action@1329c298aa20c3257846c9b2e0e55967df3e3c37 # v2.75.25 + uses: taiki-e/install-action@b651345a718c8f44efa2460560b3dbf29cbd7ee1 # v2.75.26 with: tool: wasm-pack - name: Set up Node.js @@ -92,7 +92,7 @@ jobs: - name: Cache cargo uses: Swatinem/rust-cache@c19371144df3bb44fab255c43d04cbc2ab54d1c4 # v2.9.1 - name: Install wasm-pack - uses: taiki-e/install-action@1329c298aa20c3257846c9b2e0e55967df3e3c37 # v2.75.25 + uses: taiki-e/install-action@b651345a718c8f44efa2460560b3dbf29cbd7ee1 # v2.75.26 with: tool: wasm-pack - name: Install pnpm diff --git a/.github/workflows/playground.yaml b/.github/workflows/playground.yaml index 3d68d25..2295b13 100644 --- a/.github/workflows/playground.yaml +++ b/.github/workflows/playground.yaml @@ -36,7 +36,7 @@ jobs: - name: Cache cargo uses: Swatinem/rust-cache@c19371144df3bb44fab255c43d04cbc2ab54d1c4 # v2.9.1 - name: Install wasm-pack - uses: taiki-e/install-action@1329c298aa20c3257846c9b2e0e55967df3e3c37 # v2.75.25 + uses: taiki-e/install-action@b651345a718c8f44efa2460560b3dbf29cbd7ee1 # v2.75.26 with: tool: wasm-pack - name: Install pnpm From 6e08505affd8cab3be9b3de753c78b71a006187e Mon Sep 17 00:00:00 2001 From: Masaaki Hirotsu Date: Thu, 7 May 2026 12:36:31 +0900 Subject: [PATCH 2/2] ci: install cargo-deny via taiki-e/install-action Replace `cargo install cargo-deny --locked` with the prebuilt-binary install-action to speed up the deny-check job and align with how other Rust tooling (cargo-llvm-cov, wasm-pack) is installed in this workflow. --- .github/workflows/ci.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 79485d8..14b3390 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -120,6 +120,8 @@ jobs: - name: Cache cargo uses: Swatinem/rust-cache@c19371144df3bb44fab255c43d04cbc2ab54d1c4 # v2.9.1 - name: Install cargo-deny - run: cargo install cargo-deny --locked + uses: taiki-e/install-action@b651345a718c8f44efa2460560b3dbf29cbd7ee1 # v2.75.26 + with: + tool: cargo-deny - name: Run cargo-deny run: make deny-check