Consolidate dependency updates#150
Merged
Merged
Conversation
This was referenced Jul 4, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
This PR consolidates multiple Dependabot updates by bumping GitHub Actions used in CI/release workflows and refreshing the Rust dependency lockfile to newer crate versions.
Changes:
- Updated
actions/checkoutusage across workflows fromv6tov7. - Updated the playground deployment workflow to use
cloudflare/wrangler-action@v4. - Updated Rust dependency resolutions in
Cargo.lock(e.g.,insta,anyhow,env_logger,chrono,serde_json), including new transitive deps likestrip-ansi-escapes.
Reviewed changes
Copilot reviewed 5 out of 6 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| Cargo.lock | Updates locked Rust crate versions and transitive dependencies. |
| .github/workflows/release.yml | Bumps actions/checkout to v7 for release jobs. |
| .github/workflows/playground.yml | Bumps actions/checkout to v7 and wrangler-action to v4 for Pages deploy. |
| .github/workflows/labels.yml | Bumps actions/checkout to v7 for label sync workflow. |
| .github/workflows/docs.yml | Bumps actions/checkout to v7 for docs workflow. |
| .github/workflows/ci.yml | Bumps actions/checkout to v7 across CI jobs. |
Comments suppressed due to low confidence (1)
.github/workflows/playground.yml:42
cloudflare/wrangler-action@v4installs Wrangler v4 by default whenwranglerVersionis not provided, which can make deployments change behavior unexpectedly as Wrangler v4 minor versions are released. Consider pinning the Wrangler major (or an exact version) explicitly via the action input so the deployed toolchain is intentional and reproducible.
- name: Deploy to Cloudflare Pages
uses: cloudflare/wrangler-action@v4
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
command: pages deploy playground/dist --project-name=tryke-playground
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
5733e55 to
8e54cc7
Compare
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.
Context
Consolidates the open Dependabot updates from #141, #142, #143, #144, #145, #146, and #147.
Changes
actions/checkoutfrom v6 to v7.cloudflare/wrangler-actionfrom v3 to v4.instato 1.48.0,anyhowto 1.0.103,env_loggerto 0.11.11,chronoto 0.4.45, andserde_jsonto 1.0.150.Test plan
uvx prek run -auv run cargo nextest run --workspace --all-features(671 passed)