Conversation
seisman
commented
Sep 4, 2026
| updates: | ||
| - package-ecosystem: "github-actions" | ||
| directory: "/" | ||
| directories: |
Member
Author
There was a problem hiding this comment.
17 tasks
seisman
marked this pull request as ready for review
September 4, 2026 11:48
Contributor
There was a problem hiding this comment.
🟢 Approval recommended
The workflow and action changes are internally consistent, align with existing local-action usage in the repo, and implement the stated LFS bandwidth reduction approach without introducing verified correctness issues.
Pull request overview
This PR introduces a local composite GitHub Action to cache Git LFS objects (baseline images) in GitHub Actions cache, then updates CI workflows to use it so git lfs pull only downloads missing objects and reduces LFS bandwidth usage.
Changes:
- Add a composite action (
checkout-lfs) that computes an LFS-object cache key and restores/caches.git/lfsbefore runninggit lfs pull. - Update CI workflows to disable
actions/checkoutLFS fetching and instead run the new composite action. - Update Dependabot configuration to also monitor GitHub Actions used under
/.github/actions/*.
File summaries
| File | Description |
|---|---|
| .github/workflows/ci_tests.yaml | Disables checkout LFS and adds a step to run the new checkout-lfs composite action. |
| .github/workflows/ci_tests_dev.yaml | Same CI adjustment for the dev CI workflow matrix. |
| .github/dependabot.yml | Expands Dependabot’s GitHub Actions update scope to include local action directories. |
| .github/actions/checkout-lfs/action.yml | New composite action that caches/restores .git/lfs and runs git lfs pull. |
Review details
- Files reviewed: 4/4 changed files
- Comments generated: 0
- Review effort level: Lite
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
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.
Address the LFS bandwidth quota issue reported in #4738 (comment).
This PR adds a composite action to cache Git LFS objects (i.e., baseline images) as GitHub cache, so that
git lfs pullonly pulls LFS objects when missing. It should help reduce our Git LFS bandwidth.