build(deps): consolidate weekly dependency + action bumps#39
Merged
Conversation
Roll the seven open Dependabot PRs (#32–#38) into one, plus two transitive crate bumps Dependabot doesn't file PRs for. GitHub Actions (SHA re-pinned, version comment kept): - taiki-e/install-action v2 -> bffeee2 (was 8b3c737; ci/fuzz/mutants) - actions/attest-build-provenance v4.1.0 -> v4.1.1 (release) - actions/cache/restore v5.0.5 -> v6.1.0 (fuzz) - actions/cache/save v5.0.5 -> v6.1.0 (fuzz) Cargo.lock (patch floats under the workspace's major pins): - anyhow 1.0.102 -> 1.0.103 (Dependabot #34) - quote 1.0.45 -> 1.0.46 (Dependabot #33) - trybuild 1.0.116 -> 1.0.117 (Dependabot #32) - arrayvec 0.7.6 -> 0.7.7 (transitive; no Dependabot PR) - cc 1.2.64 -> 1.2.65 (transitive; no Dependabot PR) Verified: `make test` (all features) green, `cargo deny check` advisories/bans/licenses/sources ok. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
There was a problem hiding this comment.
Pull request overview
Consolidates multiple Dependabot dependency bumps into a single PR by updating patch-level Rust crate lockfile entries and re-pinning a few GitHub Actions to newer SHAs while preserving the existing “pinned SHA + version comment” convention.
Changes:
- Updated
Cargo.lockfor patch-level crate releases (anyhow,quote,trybuild) plus two transitive bumps (arrayvec,cc). - Re-pinned
taiki-e/install-actionto a newer v2 commit SHA across CI-related workflows. - Updated
actions/cache/{restore,save}to v6.1.0 andactions/attest-build-provenanceto v4.1.1.
Reviewed changes
Copilot reviewed 4 out of 5 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| app/Cargo.lock | Patch-level crate updates in the lockfile (no manifest changes). |
| .github/workflows/ci.yml | Re-pins taiki-e/install-action SHA used by CI (cargo-deny install). |
| .github/workflows/fuzz.yml | Re-pins taiki-e/install-action and updates cache restore/save to v6.1.0. |
| .github/workflows/mutants.yml | Re-pins taiki-e/install-action SHA used for cargo-mutants install. |
| .github/workflows/release.yml | Updates actions/attest-build-provenance pin to v4.1.1. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Consolidates the seven open Dependabot PRs (#32–#38) into one, and adds two transitive crate bumps Dependabot doesn't open PRs for (it only files for direct deps). Closing this obviates all seven.
GitHub Actions (SHA re-pinned, version comment preserved)
taiki-e/install-action8b3c737(v2)bffeee2(v2)actions/attest-build-provenanceactions/cache/restoreactions/cache/saveCargo.lock (patch floats under the workspace's major pins)
anyhowquotetrybuildarrayvecccThe three Cargo PRs were lock-only already (the workspace pins majors —
anyhow="1",quote="1",trybuild="1"— and lets patch float), so noCargo.tomlchange is needed. The remaining pinned actions (checkout,rust-cache,upload/download-artifact,release-plz,crates-io-auth-action,rust-toolchain) are already current per Dependabot's scan.Verification
make test(--workspace --all-features) — all greencargo deny check— advisories / bans / licenses / sources ok🤖 Generated with Claude Code