From e20c6651cdfbdbd8955190e9ff16d38410377a8d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Mar 2026 16:56:29 +0000 Subject: [PATCH] chore(deps): bump the github-actions group with 4 updates Bumps the github-actions group with 4 updates: [taiki-e/install-action](https://github.com/taiki-e/install-action), [github/codeql-action](https://github.com/github/codeql-action), [github/gh-aw](https://github.com/github/gh-aw) and [crate-ci/typos](https://github.com/crate-ci/typos). Updates `taiki-e/install-action` from 2.68.8 to 2.68.16 - [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/cfdb446e391c69574ebc316dfb7d7849ec12b940...d6e286fa45544157a02d45a43742857ebbc25d12) Updates `github/codeql-action` from 4.32.4 to 4.32.5 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/github/codeql-action/compare/89a39a4e59826350b863aa6b6252a07ad50cf83e...c793b717bc78562f491db7b0e93a3a178b099162) Updates `github/gh-aw` from 0.47.1 to 0.51.6 - [Release notes](https://github.com/github/gh-aw/releases) - [Changelog](https://github.com/github/gh-aw/blob/main/CHANGELOG.md) - [Commits](https://github.com/github/gh-aw/compare/v0.47.1...33cd6c7f1fee588654ef19def2e6a4174be66197) Updates `crate-ci/typos` from 1.43.5 to 1.44.0 - [Release notes](https://github.com/crate-ci/typos/releases) - [Changelog](https://github.com/crate-ci/typos/blob/master/CHANGELOG.md) - [Commits](https://github.com/crate-ci/typos/compare/57b11c6b7e54c402ccd9cda953f1072ec4f78e33...631208b7aac2daa8b707f55e7331f9112b0e062d) --- updated-dependencies: - dependency-name: taiki-e/install-action dependency-version: 2.68.16 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: github/codeql-action dependency-version: 4.32.5 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: github/gh-aw dependency-version: 0.51.6 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: crate-ci/typos dependency-version: 1.44.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/ci-checks.yml | 2 +- .github/workflows/ci-coverage.yml | 2 +- .github/workflows/code-quality.yml | 2 +- .github/workflows/codeql-analysis.yml | 4 ++-- .github/workflows/copilot-setup-steps.yml | 2 +- .github/workflows/daily-docs-review.lock.yml | 10 +++++----- .github/workflows/docs-freshness.lock.yml | 10 +++++----- .github/workflows/fuzz-testing.yml | 2 +- .github/workflows/mutation-testing.yml | 2 +- .github/workflows/release-packages.yml | 4 ++-- .github/workflows/release-sbom.yml | 2 +- .github/workflows/security-audit.yml | 2 +- .github/workflows/spell-check.yml | 2 +- 13 files changed, 23 insertions(+), 23 deletions(-) diff --git a/.github/workflows/ci-checks.yml b/.github/workflows/ci-checks.yml index 162c80f..b1ce874 100644 --- a/.github/workflows/ci-checks.yml +++ b/.github/workflows/ci-checks.yml @@ -170,7 +170,7 @@ jobs: - name: Install cargo-deny # v2.67.25 uses: >- - taiki-e/install-action@cfdb446e391c69574ebc316dfb7d7849ec12b940 + taiki-e/install-action@d6e286fa45544157a02d45a43742857ebbc25d12 with: tool: cargo-deny diff --git a/.github/workflows/ci-coverage.yml b/.github/workflows/ci-coverage.yml index 460c33f..3d4ca42 100644 --- a/.github/workflows/ci-coverage.yml +++ b/.github/workflows/ci-coverage.yml @@ -33,7 +33,7 @@ jobs: - name: Install cargo-llvm-cov # v2.67.25 uses: >- - taiki-e/install-action@cfdb446e391c69574ebc316dfb7d7849ec12b940 + taiki-e/install-action@d6e286fa45544157a02d45a43742857ebbc25d12 with: tool: cargo-llvm-cov@0.6.14 diff --git a/.github/workflows/code-quality.yml b/.github/workflows/code-quality.yml index a177a15..efcb550 100644 --- a/.github/workflows/code-quality.yml +++ b/.github/workflows/code-quality.yml @@ -26,7 +26,7 @@ jobs: - name: Install analysis tools # v2.67.18 - uses: taiki-e/install-action@cfdb446e391c69574ebc316dfb7d7849ec12b940 + uses: taiki-e/install-action@d6e286fa45544157a02d45a43742857ebbc25d12 with: tool: cargo-geiger,cargo-bloat diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index b8c2a93..7f6fa29 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -30,13 +30,13 @@ jobs: - name: Initialize CodeQL # yamllint disable-line rule:line-length - uses: github/codeql-action/init@89a39a4e59826350b863aa6b6252a07ad50cf83e # v4.32.4 + uses: github/codeql-action/init@c793b717bc78562f491db7b0e93a3a178b099162 # v4.32.5 with: languages: rust build-mode: none - name: Perform CodeQL analysis # yamllint disable-line rule:line-length - uses: github/codeql-action/analyze@89a39a4e59826350b863aa6b6252a07ad50cf83e # v4.32.4 + uses: github/codeql-action/analyze@c793b717bc78562f491db7b0e93a3a178b099162 # v4.32.5 with: category: "/language:rust" diff --git a/.github/workflows/copilot-setup-steps.yml b/.github/workflows/copilot-setup-steps.yml index b7e1210..828ef3b 100644 --- a/.github/workflows/copilot-setup-steps.yml +++ b/.github/workflows/copilot-setup-steps.yml @@ -33,7 +33,7 @@ jobs: - name: Install cargo-deny # v2.67.25 - uses: taiki-e/install-action@cfdb446e391c69574ebc316dfb7d7849ec12b940 + uses: taiki-e/install-action@d6e286fa45544157a02d45a43742857ebbc25d12 with: tool: cargo-deny diff --git a/.github/workflows/daily-docs-review.lock.yml b/.github/workflows/daily-docs-review.lock.yml index b89974b..d94836a 100644 --- a/.github/workflows/daily-docs-review.lock.yml +++ b/.github/workflows/daily-docs-review.lock.yml @@ -49,7 +49,7 @@ jobs: comment_repo: "" steps: - name: Setup Scripts - uses: github/gh-aw/actions/setup@bf34f9947505c887fdc597a13b8ff277cccd9c20 # v0.49.4 + uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6 with: destination: /opt/gh-aw/actions - name: Validate context variables @@ -252,7 +252,7 @@ jobs: secret_verification_result: ${{ steps.validate-secret.outputs.verification_result }} steps: - name: Setup Scripts - uses: github/gh-aw/actions/setup@bf34f9947505c887fdc597a13b8ff277cccd9c20 # v0.49.4 + uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6 with: destination: /opt/gh-aw/actions - name: Checkout repository @@ -839,7 +839,7 @@ jobs: total_count: ${{ steps.missing_tool.outputs.total_count }} steps: - name: Setup Scripts - uses: github/gh-aw/actions/setup@bf34f9947505c887fdc597a13b8ff277cccd9c20 # v0.49.4 + uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6 with: destination: /opt/gh-aw/actions - name: Download agent output artifact @@ -943,7 +943,7 @@ jobs: success: ${{ steps.parse_results.outputs.success }} steps: - name: Setup Scripts - uses: github/gh-aw/actions/setup@bf34f9947505c887fdc597a13b8ff277cccd9c20 # v0.49.4 + uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6 with: destination: /opt/gh-aw/actions - name: Download agent artifacts @@ -1055,7 +1055,7 @@ jobs: process_safe_outputs_temporary_id_map: ${{ steps.process_safe_outputs.outputs.temporary_id_map }} steps: - name: Setup Scripts - uses: github/gh-aw/actions/setup@bf34f9947505c887fdc597a13b8ff277cccd9c20 # v0.49.4 + uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6 with: destination: /opt/gh-aw/actions - name: Download agent output artifact diff --git a/.github/workflows/docs-freshness.lock.yml b/.github/workflows/docs-freshness.lock.yml index faa5676..fd30838 100644 --- a/.github/workflows/docs-freshness.lock.yml +++ b/.github/workflows/docs-freshness.lock.yml @@ -50,7 +50,7 @@ jobs: comment_repo: "" steps: - name: Setup Scripts - uses: github/gh-aw/actions/setup@c94abee3e98890c5ddf4e8f41a74ed3302c56cec # v0.47.1 + uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6 with: destination: /opt/gh-aw/actions - name: Validate context variables @@ -253,7 +253,7 @@ jobs: secret_verification_result: ${{ steps.validate-secret.outputs.verification_result }} steps: - name: Setup Scripts - uses: github/gh-aw/actions/setup@c94abee3e98890c5ddf4e8f41a74ed3302c56cec # v0.47.1 + uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6 with: destination: /opt/gh-aw/actions - name: Checkout repository @@ -878,7 +878,7 @@ jobs: total_count: ${{ steps.missing_tool.outputs.total_count }} steps: - name: Setup Scripts - uses: github/gh-aw/actions/setup@c94abee3e98890c5ddf4e8f41a74ed3302c56cec # v0.47.1 + uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6 with: destination: /opt/gh-aw/actions - name: Download agent output artifact @@ -968,7 +968,7 @@ jobs: success: ${{ steps.parse_results.outputs.success }} steps: - name: Setup Scripts - uses: github/gh-aw/actions/setup@c94abee3e98890c5ddf4e8f41a74ed3302c56cec # v0.47.1 + uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6 with: destination: /opt/gh-aw/actions - name: Download agent artifacts @@ -1078,7 +1078,7 @@ jobs: process_safe_outputs_temporary_id_map: ${{ steps.process_safe_outputs.outputs.temporary_id_map }} steps: - name: Setup Scripts - uses: github/gh-aw/actions/setup@c94abee3e98890c5ddf4e8f41a74ed3302c56cec # v0.47.1 + uses: github/gh-aw/actions/setup@33cd6c7f1fee588654ef19def2e6a4174be66197 # v0.51.6 with: destination: /opt/gh-aw/actions - name: Download agent output artifact diff --git a/.github/workflows/fuzz-testing.yml b/.github/workflows/fuzz-testing.yml index 24db1ad..198019f 100644 --- a/.github/workflows/fuzz-testing.yml +++ b/.github/workflows/fuzz-testing.yml @@ -34,7 +34,7 @@ jobs: toolchain: nightly - name: Install cargo-fuzz - uses: taiki-e/install-action@cfdb446e391c69574ebc316dfb7d7849ec12b940 # v2.68.8 + uses: taiki-e/install-action@d6e286fa45544157a02d45a43742857ebbc25d12 # v2.68.16 with: tool: cargo-fuzz@0.12.0 diff --git a/.github/workflows/mutation-testing.yml b/.github/workflows/mutation-testing.yml index 6abbb09..8758f43 100644 --- a/.github/workflows/mutation-testing.yml +++ b/.github/workflows/mutation-testing.yml @@ -52,7 +52,7 @@ jobs: key: ${{ runner.os }}-target-mutation-${{ hashFiles('**/Cargo.lock') }} - name: Install cargo-mutants - uses: taiki-e/install-action@cfdb446e391c69574ebc316dfb7d7849ec12b940 # v2.68.8 + uses: taiki-e/install-action@d6e286fa45544157a02d45a43742857ebbc25d12 # v2.68.16 with: tool: cargo-mutants@24.11.0 diff --git a/.github/workflows/release-packages.yml b/.github/workflows/release-packages.yml index 7bb36d4..a6734ef 100644 --- a/.github/workflows/release-packages.yml +++ b/.github/workflows/release-packages.yml @@ -207,7 +207,7 @@ jobs: - name: Install cargo-deb # v2.67.25 uses: >- - taiki-e/install-action@cfdb446e391c69574ebc316dfb7d7849ec12b940 + taiki-e/install-action@d6e286fa45544157a02d45a43742857ebbc25d12 with: tool: cargo-deb@2.7.0 @@ -254,7 +254,7 @@ jobs: - name: Install cargo-generate-rpm # v2.67.25 uses: >- - taiki-e/install-action@cfdb446e391c69574ebc316dfb7d7849ec12b940 + taiki-e/install-action@d6e286fa45544157a02d45a43742857ebbc25d12 with: tool: cargo-generate-rpm@0.15.1 diff --git a/.github/workflows/release-sbom.yml b/.github/workflows/release-sbom.yml index ec18705..439e71c 100644 --- a/.github/workflows/release-sbom.yml +++ b/.github/workflows/release-sbom.yml @@ -37,7 +37,7 @@ jobs: - name: Install cargo-sbom # v2.67.25 uses: >- - taiki-e/install-action@cfdb446e391c69574ebc316dfb7d7849ec12b940 + taiki-e/install-action@d6e286fa45544157a02d45a43742857ebbc25d12 with: tool: cargo-sbom diff --git a/.github/workflows/security-audit.yml b/.github/workflows/security-audit.yml index 37423b1..53c359c 100644 --- a/.github/workflows/security-audit.yml +++ b/.github/workflows/security-audit.yml @@ -32,7 +32,7 @@ jobs: - name: Install cargo-audit # v2.67.18 - uses: taiki-e/install-action@cfdb446e391c69574ebc316dfb7d7849ec12b940 + uses: taiki-e/install-action@d6e286fa45544157a02d45a43742857ebbc25d12 with: tool: cargo-audit diff --git a/.github/workflows/spell-check.yml b/.github/workflows/spell-check.yml index e0e1f70..89af7be 100644 --- a/.github/workflows/spell-check.yml +++ b/.github/workflows/spell-check.yml @@ -21,7 +21,7 @@ jobs: - name: Check spelling with typos # master (latest) - uses: crate-ci/typos@57b11c6b7e54c402ccd9cda953f1072ec4f78e33 + uses: crate-ci/typos@631208b7aac2daa8b707f55e7331f9112b0e062d continue-on-error: true with: files: .